1
Answer

Windows forms navigation

Greg C

Greg C

16y
7.5k
1
I'm writing a kiosk program and was wondering what the best way for me to navigate through multiple windows forms.  For example, the main page is going to display buttons; clicking those buttons will bring up a new form.  Is MDI the best way to go? 

Requirements are preventing me from using ASP, so this has to be strictly a compiled C# app. 

Thanks for any advice.
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>