Click here to Skip to main content
15,920,602 members
Home / Discussions / C#
   

C#

 
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 
GeneralRetrieving ActiveX control of existing tool windows Pin
cppmanuf2-Jun-03 10:02
cppmanuf2-Jun-03 10:02 
GeneralPrinting directly on the printer Pin
Jérôme2-Jun-03 4:33
sussJérôme2-Jun-03 4:33 
GeneralRe: Printing directly on the printer Pin
Ranjan Banerji2-Jun-03 5:21
Ranjan Banerji2-Jun-03 5:21 
GeneralRe: Printing directly on the printer Pin
Anonymous2-Jun-03 23:23
Anonymous2-Jun-03 23:23 
Generaldatagrid Pin
Cristian_Dior2-Jun-03 4:26
Cristian_Dior2-Jun-03 4:26 
GeneralRe: datagrid Pin
A.Wegierski2-Jun-03 21:30
A.Wegierski2-Jun-03 21:30 
GeneralRe: datagrid Pin
Cristian_Dior3-Jun-03 20:16
Cristian_Dior3-Jun-03 20:16 
GeneralRe: datagrid Pin
A.Wegierski4-Jun-03 21:50
A.Wegierski4-Jun-03 21:50 
GeneralRe: datagrid Pin
Cristian_Dior4-Jun-03 22:10
Cristian_Dior4-Jun-03 22:10 
GeneralRe: datagrid Pin
A.Wegierski5-Jun-03 19:29
A.Wegierski5-Jun-03 19:29 
GeneralGetting the active control type Pin
lsantos20002-Jun-03 3:19
lsantos20002-Jun-03 3:19 
GeneralRe: Getting the active control type Pin
Nathan Blomquist2-Jun-03 4:16
Nathan Blomquist2-Jun-03 4:16 
GeneralRe: Getting the active control type Pin
leppie2-Jun-03 7:57
leppie2-Jun-03 7:57 

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.