Click here to Skip to main content
15,925,399 members
Home / Discussions / C#
   

C#

 
GeneralRe: problem with combo box !!! Pin
kokain3-Jun-03 6:27
kokain3-Jun-03 6:27 
GeneralRe: problem with combo box !!! Pin
James T. Johnson3-Jun-03 10:55
James T. Johnson3-Jun-03 10:55 
GeneralRe: problem with combo box !!! Pin
Anonymous6-Jun-03 4:25
Anonymous6-Jun-03 4:25 
GeneralApplyFont in Cristal Report Pin
Givi78394763543-Jun-03 2:56
sussGivi78394763543-Jun-03 2:56 
GeneralALT Key Pin
Valeria Bogdevich3-Jun-03 2:22
Valeria Bogdevich3-Jun-03 2:22 
GeneralRe: ALT Key Pin
Vasudevan Deepak Kumar3-Jun-03 5:00
Vasudevan Deepak Kumar3-Jun-03 5:00 
GeneralRe: ALT Key Pin
Vasudevan Deepak Kumar3-Jun-03 18:40
Vasudevan Deepak Kumar3-Jun-03 18:40 
GeneralRe: ALT Key Pin
3-Jun-03 22:16
suss3-Jun-03 22:16 
GeneralWindows to *nix with Mono Pin
Kannan Kalyanaraman3-Jun-03 0:31
Kannan Kalyanaraman3-Jun-03 0:31 
GeneralRe: Windows to *nix with Mono Pin
Daniel Turini3-Jun-03 0:41
Daniel Turini3-Jun-03 0:41 
GeneralRe: Windows to *nix with Mono Pin
Giles3-Jun-03 2:12
Giles3-Jun-03 2:12 
GeneralRe: Windows to *nix with Mono Pin
Philip Fitzsimons3-Jun-03 2:46
Philip Fitzsimons3-Jun-03 2:46 
GeneralRe: Windows to *nix with Mono Pin
James T. Johnson3-Jun-03 23:13
James T. Johnson3-Jun-03 23:13 
GeneralRe: Windows to *nix with Mono Pin
apferreira3-Jun-03 3:03
apferreira3-Jun-03 3:03 
GeneralRe: Windows to *nix with Mono Pin
Kannan Kalyanaraman3-Jun-03 4:59
Kannan Kalyanaraman3-Jun-03 4:59 
GeneralRe: Windows to *nix with Mono Pin
apferreira4-Jun-03 2:11
apferreira4-Jun-03 2:11 
GeneralManaged DirectX on the Desktop Pin
Jacques Buitendag3-Jun-03 0:25
Jacques Buitendag3-Jun-03 0:25 
GeneralRe: Managed DirectX on the Desktop Pin
Philip Fitzsimons3-Jun-03 2:49
Philip Fitzsimons3-Jun-03 2:49 
GeneralRe: Managed DirectX on the Desktop Pin
Jacques Buitendag3-Jun-03 3:38
Jacques Buitendag3-Jun-03 3:38 
GeneralMultilanguage application Pin
aeros2-Jun-03 21:53
aeros2-Jun-03 21:53 
GeneralRe: Multilanguage application Pin
apferreira3-Jun-03 1:36
apferreira3-Jun-03 1:36 
In C# NET you create embedded resource files (*.resx)that will be transformed in satellite assemblies (resource only dlls) if you specify that your application is localizable.

In Form properties, got to the localizable property and set it to true. Then change the language property to the language you want and edit your form's title, menus etc in design view. For message boxes, error messages and other things, add a resource file (through V.S. add new item option) to your project with the specified localized strings or typed resource. These added files must use the convention name.culture.resx (i.e. for French you could have Strings.fr-FR.resx has the name). Do not forget to include a fallback neutral resource file also (no need to do this for the form's specific resources since all forms have a fallback resoruce file by default).

Use Resource Manager in your code to get the specified string or typed resource from the localized resource file.

And remember, before doing all of this, code your application so that the executable code can be clearly separated from localized resources.
Generalauto add to toolbox Pin
Roger Alsing2-Jun-03 21:52
Roger Alsing2-Jun-03 21:52 
QuestionHow to pass null instead of ref Rectangle Pin
J. Dunlap2-Jun-03 10:19
J. Dunlap2-Jun-03 10:19 
AnswerRe: How to pass null instead of ref Rectangle Pin
James T. Johnson2-Jun-03 11:02
James T. Johnson2-Jun-03 11:02 
GeneralRe: How to pass null instead of ref Rectangle Pin
J. Dunlap2-Jun-03 11:55
J. Dunlap2-Jun-03 11:55 

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.