1
Answer

Visual Studio 2008 Coding Tip

Frank Claassens

Frank Claassens

16y
2.3k
1
Is there a shortcut key I can press to automatically add the  { } brackets after typing a method declaration or something like this:

public string GetName()
(press shortcut key here to add brackets)

Then another stupid question :)

My Visual Studio 2008 at home allows me to switch between Code & Form view by pressing F7, but my installation at work does otherwise. When on Form View, I can press F7 and it takes me to Code View, but once in Code View,pressing F7 doesn't take me back to Form View? Where can I change this setting?

Thanks for all your help.
Answers (1)
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
0
Priyank Khare

Priyank Khare

NA 306 66.8k 12y
thankx for reply but will it be work in case if i will display the total price....
because i think it will display an error during addition of price like "usd 1231 + usd 2465"

what will i do to resolve this problem.?
0
Santhosh Kumar Jayaraman

Santhosh Kumar Jayaraman

NA 9.9k 2.3m 12y
try this

before binding the datatable to gridview.
foreach(DataRow dr in datatable1)
{
dr["price"]=ConfigurationSettings.AppSettings["Currency"] + dr["Price"].ToString();
}

and in web.config.

<AppSettings>
<add key="Currency" value ="USD"/>
</AppSettings>