Convert Visual Basic for Applications Macro to C# 4.0

In this post I am go Convert Visual Basic for Applications Macro to C# 4.0 , This is really easy one. I include youtube Video also.. See this video :- [youtube=http://www.youtube.com/watch?v=at_ExhQLgm4] VBA macro code :- Sub Macro1() ActiveCell.FormulaR1C1 = "1" Range("A2").Select ActiveCell.FormulaR1C1 = "2" Range("A1:A2").Select Selection.AutoFill Destination:=Range("A1:A10"), Type:=xlFillDefault Range("A1:A10").Select With Selection.Interior .Pattern = xlSolid .PatternColorIndex = xlAutom...
More

ASP.NET Security Vulnerability and prevent that

Patch to fix the ASP.NET Security Vulnerability is now available on Windows Update : ASP.NET Security Update Now Available on Windows Updates http://weblogs.asp.net/scottgu/archive/2010/09/30/asp-net-security-fix-now-on-windows-update.aspx -- Updated on 01st-Oct-2010 Official patch released : ASP.NET Security Update Now Available http://weblogs.asp.net/scottgu/archive/2010/09/28/asp-net-security-update-now-available.aspx -- Updated on 29th-Sep-2010 In this post I am going say something about ASP...
More

Naming standards and basic rules in .net coding

Naming standards and basic rules in .net coding In this post I am going to share about Naming standards in C#.net with basic rules. It is best to follow the naming standards while programming, in any language. Thanks to slideshare.net [slideshare id=5233695&doc=namingstandards-100919103335-phpapp01] Here is more presentations http://www.slideshare.net/nagaharish_movva/ Slides Content :- Naming convention is a set of rules. Those rules applied in our computer programming. Naming ...
More