Webinar : .Net Code Protection with SecureTeam
In this session , the Secure Team will demonstrate how we can protect your .Net code with some protection methods like obfuscation,code encryption techniques . Title : .Net Code Protection with...
View ArticleWebinar : Ajax Development with Script#
Script# is a free tool that compiles the C# source code into regular JavaScript. To Know more about Script# visit : http://projects.nikhilk.net/ScriptSharp . LIDNUG , an Linked .NET Users Group is...
View Article( Webinar ) LIDNUG: Building Silverlight Applications using the MVVM Pattern
Here’s an upcoming webinar on “Building Silverlight Applications using the MVVM Pattern” by LIDNUG ( Linked .Net Users Group ) . In this session, Silverlight MVP , Dan Wahlin will talk about the...
View ArticleInteresting .NET Links – January 13 , 2011
Visual Studio 2010 designer error: Value cannot be null. Parameter name: objectType – Giorgetti Alessandro Changing the Icon of a Windows Phone 7 Application in Visual Studio 2010 – ( Thats Me ) SQL...
View ArticleInteresting .NET Links – March 28 , 2011
Windows Live Writer Codehighlighting Plugin For Alex Gorbatchev’s SyntaxHighlighter XNA is coming to Visual Basic! – Lisa Feigenbaum Implementing dependency injection pattern in .NET – Jalpesh Visual...
View ArticleVisual Basic is now integrated in Windows Phone 7.1 Beta(Mango) SDK
Microsoft’s Windows Phone 7.1 Beta SDK that was released a few days back has some good news for the Visual Basic developers . Visual Basic is now fully integrated in Visual Studio for the WP7...
View ArticleExpression 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 ArticleListing 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 ArticleHow 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 ArticleGenerating 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 ArticleHow 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 ArticleDisplay 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 ArticleHow 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 ArticleSingapore 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 ArticleHow 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 ArticleHow 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 ArticleC# Tips & Tricks #30 – Optional and Named Parameters
Optional parameters and named Parameters are the new features in C# 4.0.It provides the ability to define a parameter for a function with some default value. Visual Basic had the optional parameters...
View Article