Quantcast
Channel: Geeks Tutor
Browsing all 17 articles
Browse latest View live

Interesting .NET Links – September 23 , 2010

MbUnit/Gallio 3.2 ( Andrew Stopford ) What is Functional Programming? Part 4, Linq ( Christopher Bennage ) Windows Phone 7, Reactive Extensions, OData, MVVM ( John P Alioto ) Windows Phone 7...

View Article



Interesting .NET Links – December 27 , 2010

GUID Vs Int data type as primary key – jalpesh vadgama Microsoft Visual Studio 2010 Express for Windows Phone in a trial mode  Windows Phone 7 Useful Links for Tile Push Notifications – Jason Zander...

View Article

Interesting .NET Links – January 7 , 2011

Request format is unrecognized for URL unexpectedly ending exception in web service – Jalpesh Adding an ApplicationBar in Windows Phone 7 using Visual Studio How to Create Full Database Backup on MS...

View Article

Interesting .NET Links – August 22 , 2011

Building JavaScript MVVM apps in ASP.NET MVC using KnockoutJS – Shiju Varghese Slow OracleConnection Creation – Geoff Hudik What is SynchronizationContext all about – Abhishek Sur Nested ListBox...

View Article

Leveraging your XAML MVVM Skills in HTML – Changing UI Apperances

Knockout for the XAML Developer  The Knockout for the XAML developer course helps XAML developers, whether you’re a WPF or Silverlight developer, take their existing MVVM skills and transition them to...

View Article


Experiments with TypeScript, MVVM and Windows Store apps – TypedMVVM...

TypeScript is an Open-Source language designed by Anders Hejlsberg (the creator of C#, Delphi and Turbo Pascal) for extending JavaScript with additional features available in languages like C#:...

View Article

Create Custom Kendo MVVM Widgets

Kendo UI is more than just interface-candy. There is an elegant, underlying framework at play that makes things work. Is it easy to extend though? YES – Kendo is also framework-candy! Let’s start by...

View Article

Image may be NSFW.
Clik here to view.

Expression as column in SQL Query

You can write an expression and place it in the SELECT list of a SQL Query. For example , you want to display the Total Leaves available for the user from the Employee table. Total Leaves in this case...

View Article


Image may be NSFW.
Clik here to view.

Listing all the tables that contain the specified column name in SQL Server

Here’s a query that can be used to list all the table names that contain the specified column name from the INFORMATION_SCHEMA.Columns table. SELECT COLUMN_NAME, TABLE_NAME FROM...

View Article


Image may be NSFW.
Clik here to view.

How to set an default value for an existing column in SQL Server ?

If you want to set an default value for an existing column in SQL Server , you can use the ALTER command and specify the CONSTRAINT. How to set an default value for an existing column in SQL Server ?...

View Article

Image may be NSFW.
Clik here to view.

Generating Insert script with data for a table in SQL Server

If you want to generate the insert script for a table in SQL Server along with the data , you can do that by setting the “Types of data to script” to data only at the database level in the SQL Server...

View Article

Image may be NSFW.
Clik here to view.

How to change the value of identity column values in SQL Server ?

There are times when you want to insert the value of the identity column as a part of the insert query instead of using the default identify value. In this case , you can set the identity_insert to ON...

View Article

Image may be NSFW.
Clik here to view.

Display a string in the Output Window in Visual Studio

You can use the Debug.WriteLine method that is defined in the System.Diagnostics namespace to display the string in the Visual Studio output window as shown. How to display a string in the Output...

View Article


Image may be NSFW.
Clik here to view.

How to Get the row and column number of cell in Excel?

In Microsoft Excel , the cell’s row number and the column number is identified from its address. For example , if the cell is G3 , then the column number is 7 and the row number is 3. But assume that...

View Article

Image may be NSFW.
Clik here to view.

Singapore SharePoint Community Meeting on November 2016

Microsoft User Groups (Singapore) is hosting its User Group meeting on November 22 , 2016 from 6.30 PM at Microsoft Singapore, One Marina Boulevard , Level 22, Meeting Room, Singapore. This meetup will...

View Article


Image may be NSFW.
Clik here to view.

How to change the border color of multiple cells in Excel?

By default , the cell border color in Microsoft Excel is grey. You can change the border color of the cell in Excel and this blog post will demonstrate how to change the border color of multiple cells....

View Article

Image may be NSFW.
Clik here to view.

How to use Server.MapPath in the external C# classes in ASP.NET Project ?

Here’s a sample code snippet demonstrating the usage of Server.MapPath() in the external C# classes in ASP.NET project. How to use Server.MapPath in the external C# classes in ASP.NET Project ?...

View Article

Browsing all 17 articles
Browse latest View live


Latest Images