Monday, August 31, 2009

Helpful Keywords

1. __arglist Lets start with __arglist. __arglist is used to send parameters to a method. Generally we used to send parameters to a function by having a list of arguments specified in the method head. If we want to pass a new set of arguments we need to have Method Overloading. Even when we want to send any number of arguments we might use param array. Now why should we use __arglist. In case of each of these methods, the problems...
Read More

Fill dropdownlist from enum

as we all know that enum is very useful and sometimes we need to show values of enum on dropdownlist. by following way we can show data of enum in dropdownlist enum CustomColors { BLACK = -1, RED = 7, GREEN = 14, UNKNOWN = -13 } protected void BtnFillddl_Click(object sender, EventArgs e) { EnumToListBox(typeof(DayOfWeek), DropDownList1); EnumToListBox(typeof(CustomColors),...
Read More

Sunday, August 30, 2009

Master the Command Window

Visual Studio has hundreds of menus, windows, and dialog boxes. This you are probably aware of; what youmay not be aware of is that you can avoid using all of these and use the command line inside the commandwindow instead. This hack looks at some of the different commands available to you, how to use existing aliases,and how to create and...
Read More

Start Visual Studio from RUN

We can start visual studio from RUN by following steps:-1. click start menu. (or press window key + R and go to step 3)2. click on RUN.3. type DEVENV in RUN and press ok or hit enter.we can use this to improve speed of opening visual studio by following steps:-* in above steps type "devenv /nosplash" instead of only DEVENV. this will open visual studio without its splash screen. and without splash screen it will be opened fa...
Read More

Turn Off Dynamic Help

By Turn off dynamic help we can improve speed of visual studio.Another issue that Visual Studio .NET helped to resolve was Dynamic Help starting during startup.Dynamic Help is another part of Visual Studio that tends to slow everything down. It is a good idea to make surethe Dynamic Help window is not open when you start up Visual Studio—this is done by simply making sure thewindow is closed when you close Visual Studio.If you...
Read More

Disable the Start Page of Visual Studio

We can disable the start page of visual studio. its a one of the tricks which is used to improve the speed of visual studio.The start page is the web page that is displayed by default when Visual Studio first starts up. By default, thispage shows a list of recent projects and includes tabs that list online resources and allow you to edit your VisualStudio profile. The start page does not really add any functionality that you...
Read More

Thursday, August 27, 2009

Master IntelliSense

Visual Studio can read your mind. Learn how to have Visual Studio's IntelliSense feature do lots of thetyping for you.Even if you have used Visual Studio only a couple times, I am sure you have noticed one of its trademarkfeatures: IntelliSense. The most popular form of IntelliSense assists you as you code by providing a list of themembers...
Read More

Block Selection

Normal text selection is done on a line-by-line basis; it is impossible to select parts of multiple lines withnormal text selection. Figure shows how it is not possible to select just the right side of the equals sign usingnormal text selection. This is a drawback that most of us have become accustomed to.Visual Studio has a feature that...
Read More

Line-Based Cut and Paste

The clipboard ring is not the only copy and paste feature in Visual Studio; a number of shortcut keys allow youto copy and paste code even faster.Most applications rely on you selecting which text you want to cut, copy, or delete. Visual Studio makes the verysimple assumption that if you have not selected any text that you want to cut, copy, or delete, the editing actionwill be performed on the entire current line. If you wanted...
Read More

Clipboard Ring

When you copy and paste text in any application, you are usually limited to copying and pasting one item at atime. If you want to copy two separate sentences, you have to copy the first one, paste it, then come back andrepeat this for the next sentence. This can become tedious when you have 10 different things to copy and theyreside in 10...
Read More

Monday, August 10, 2009

To select the text of textbox by code when focus enter to textbox

private void textbox_Enter(object sender, EventArgs e){((TextBox)sender).SelectAll()...
Read More
Powered By Blogger · Designed By Seo Blogger Templates