Click here to Skip to main content
15,891,016 members
Home / Discussions / C#
   

C#

 
AnswerRe: configuration file Pin
Christian Graus19-Aug-07 11:28
protectorChristian Graus19-Aug-07 11:28 
GeneralRe: configuration file Pin
MarioMARTIN19-Aug-07 20:00
MarioMARTIN19-Aug-07 20:00 
GeneralRe: configuration file Pin
MarioMARTIN19-Aug-07 20:26
MarioMARTIN19-Aug-07 20:26 
GeneralRe: configuration file Pin
MarioMARTIN19-Aug-07 22:02
MarioMARTIN19-Aug-07 22:02 
Questionparallel programming and multi threading in the Apllication layer Pin
sianatia19-Aug-07 8:11
sianatia19-Aug-07 8:11 
QuestionChange language Pin
Zhendalf19-Aug-07 5:14
Zhendalf19-Aug-07 5:14 
AnswerRe: Change language Pin
Giorgi Dalakishvili19-Aug-07 7:07
mentorGiorgi Dalakishvili19-Aug-07 7:07 
AnswerRe: Change language [modified] Pin
Hessam Jalali19-Aug-07 7:25
Hessam Jalali19-Aug-07 7:25 
you can use System.Windows.Forms.InputLanguage Class to do this

Installed Languages can be retrieved through InstalledInputLaguages property
changing and retrieving current input language can be done through CurrentInputLanguage property

here is an example to change the input language to Farsi

<code>

foreach (InputLanguage lang in InputLanguage.InstalledInputLanguages)                
   if(lang.LayoutName == "Farsi")
   {                    
       InputLanguage.CurrentInputLanguage = lang;                  
       break;
   }

</code>




and another way to change the language is through using cultures like

InputLanguage.CurrentInputLanguage = InputLanguage.FromCulture(CultureInfo.CurrentCulture);


good luck
GeneralRe: Change language Pin
Zhendalf19-Aug-07 9:00
Zhendalf19-Aug-07 9:00 
GeneralRe: Change language Pin
Zhendalf19-Aug-07 9:05
Zhendalf19-Aug-07 9:05 
Generaltelnet Pin
otrpgglk19-Aug-07 2:39
otrpgglk19-Aug-07 2:39 
QuestionRegex.Replace several items? Pin
hootie_dk19-Aug-07 2:39
hootie_dk19-Aug-07 2:39 
AnswerRe: Regex.Replace several items? Pin
Paul Conrad26-Aug-07 9:18
professionalPaul Conrad26-Aug-07 9:18 
QuestionResource Problem Pin
Rick van Woudenberg19-Aug-07 2:28
Rick van Woudenberg19-Aug-07 2:28 
AnswerRe: Resource Problem Pin
Paul Conrad19-Aug-07 4:06
professionalPaul Conrad19-Aug-07 4:06 
Questionhello Pin
chehreghany19-Aug-07 1:28
chehreghany19-Aug-07 1:28 
AnswerRe: hello Pin
Hessam Jalali19-Aug-07 2:26
Hessam Jalali19-Aug-07 2:26 
AnswerRe: hello Pin
Not Active19-Aug-07 5:14
mentorNot Active19-Aug-07 5:14 
Questionerror Pin
chehreghany19-Aug-07 1:07
chehreghany19-Aug-07 1:07 
AnswerRe: error Pin
Rick van Woudenberg19-Aug-07 2:33
Rick van Woudenberg19-Aug-07 2:33 
QuestionHow to get Functions arguments from shell32.dll Pin
Naveed72719-Aug-07 0:39
Naveed72719-Aug-07 0:39 
AnswerRe: How to get Functions arguments from shell32.dll Pin
Luc Pattyn19-Aug-07 1:06
sitebuilderLuc Pattyn19-Aug-07 1:06 
Question[C#] - Generating ASP Scripts through C# Pin
aravinda77719-Aug-07 0:37
aravinda77719-Aug-07 0:37 
AnswerRe: [C#] - Generating ASP Scripts through C# Pin
Mustafa Ismail Mustafa19-Aug-07 10:05
Mustafa Ismail Mustafa19-Aug-07 10:05 
Questionwhat is best way to create help ? and convert a word document to chm? Pin
B.A18-Aug-07 23:41
B.A18-Aug-07 23:41 

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.