Click here to Skip to main content
15,900,378 members
Home / Discussions / C#
   

C#

 
GeneralRe: populate .csv from datagridview Pin
arkiboys17-Jan-08 22:41
arkiboys17-Jan-08 22:41 
GeneralRe: populate .csv from datagridview Pin
Adeel Chaudhry17-Jan-08 23:19
Adeel Chaudhry17-Jan-08 23:19 
QuestionHow to scale a remoting application? Pin
mav.northwind17-Jan-08 21:35
mav.northwind17-Jan-08 21:35 
AnswerRe: How to scale a remoting application? Pin
martin_hughes18-Jan-08 2:41
martin_hughes18-Jan-08 2:41 
GeneralRe: How to scale a remoting application? Pin
mav.northwind18-Jan-08 19:37
mav.northwind18-Jan-08 19:37 
GeneralRe: How to scale a remoting application? Pin
martin_hughes19-Jan-08 1:58
martin_hughes19-Jan-08 1:58 
GeneralAdd a new Language to my program Pin
anderslundsgard17-Jan-08 21:14
anderslundsgard17-Jan-08 21:14 
GeneralRe: Add a new Language to my program Pin
imsathy17-Jan-08 22:22
imsathy17-Jan-08 22:22 
How about maintaing a separate xml file for language version like this
<root><br />
<row><br />
<name><br />
<en>test name en</en> <br />
<fr>test name fr</fr><br />
</name><br />
</row><br />
</root>


and maintain the desired language for the win app in app.config file. When the app starts it will load the XML document with the desired language version as selected in the app config.

label1.Text = xDoc.DocumentElement.SelectSingleNode("/root/row/name/" + System.Configuration.ConfigurationSettings.AppSettings["lang"]).InnerText;

hope this helps!!

Sathy

GeneralRe: Add a new Language to my program Pin
anderslundsgard17-Jan-08 22:36
anderslundsgard17-Jan-08 22:36 
GeneralRe: Add a new Language to my program Pin
imsathy17-Jan-08 22:53
imsathy17-Jan-08 22:53 
GeneralRe: Add a new Language to my program Pin
anderslundsgard17-Jan-08 23:27
anderslundsgard17-Jan-08 23:27 
GeneralRe: Add a new Language to my program Pin
Russell Jones18-Jan-08 2:51
Russell Jones18-Jan-08 2:51 
GeneralRe: Add a new Language to my program Pin
anderslundsgard18-Jan-08 2:56
anderslundsgard18-Jan-08 2:56 
GeneralRe: Add a new Language to my program Pin
Russell Jones18-Jan-08 3:16
Russell Jones18-Jan-08 3:16 
QuestionRemoting ? Pin
Eike Mueller17-Jan-08 20:46
Eike Mueller17-Jan-08 20:46 
AnswerRe: Remoting ? Pin
led mike18-Jan-08 6:43
led mike18-Jan-08 6:43 
GeneralRe: Remoting ? Pin
Eike Mueller20-Jan-08 0:06
Eike Mueller20-Jan-08 0:06 
GeneralRe: Remoting ? Pin
led mike22-Jan-08 5:03
led mike22-Jan-08 5:03 
GeneralRe: Remoting ? Pin
Eike Mueller22-Jan-08 21:16
Eike Mueller22-Jan-08 21:16 
GeneralRe: Remoting ? Pin
led mike23-Jan-08 5:46
led mike23-Jan-08 5:46 
Generalstartup a WinForm program by code Pin
jason_mf17-Jan-08 19:58
jason_mf17-Jan-08 19:58 
GeneralRe: startup a WinForm program by code Pin
Adeel Chaudhry17-Jan-08 20:01
Adeel Chaudhry17-Jan-08 20:01 
GeneralRe: startup a WinForm program by code Pin
jason_mf17-Jan-08 20:09
jason_mf17-Jan-08 20:09 
GeneralRe: startup a WinForm program by code Pin
Adeel Chaudhry17-Jan-08 20:17
Adeel Chaudhry17-Jan-08 20:17 
GeneralRe: startup a WinForm program by code Pin
jason_mf17-Jan-08 20:22
jason_mf17-Jan-08 20:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.