Category: My Blog

  • Blog
  • Category: My Blog

Ternary operator in VB.NET

We all know about Ternary operator in C#.NET. I am a big fan of ternary operator and I like to use it instead of using IF..Else. Those who don’t know about ternary operator please go through below link. http://msdn.microsoft.com/en-us/library/ty67wk28(v=vs.80).aspx Here you can see ternary operator returns one of the two values based on the condition.

Writing Quality code.

As a developer we all write programing code to devleope applicaitons. But it is very important how you write them.There are several method we have to follow when writing code.I have found very inseresting link which discuss every section of code.here is the link: http://msdn2.microsoft.com/en-us/library/4dtdybt8(vs.80).aspx

CUBE and Roll Up in SQL Server

Some time we need to summarize data very quickly without writing very complex query. CUBE And ROLL UP are great commands that give us very good summary options. We can summarize the data without writing dirty and complex queries with the help of CUBE and ROLL Up Operators. I have found a great link for

Tool, Menu, and Status Strips

Windows Forms 2.0 have great control in their stack. ToolStrip and MenuStrip are great example of it. It is a great new control which you can use with application to developer better user interface.I have found an article on both controls. It describes all the things that realted with toolstrip and menustrip. It also teaches