Click here to Skip to main content
15,921,716 members
Home / Discussions / C#
   

C#

 
GeneralRe: Change a Window text size Pin
Heath Stewart14-Jul-04 5:55
protectorHeath Stewart14-Jul-04 5:55 
GeneralRichTextBox.Rtf property argument exception Pin
partyganger14-Jul-04 4:10
partyganger14-Jul-04 4:10 
GeneralRe: RichTextBox.Rtf property argument exception Pin
LongRange.Shooter14-Jul-04 5:44
LongRange.Shooter14-Jul-04 5:44 
GeneralRe: RichTextBox.Rtf property argument exception Pin
Heath Stewart14-Jul-04 5:47
protectorHeath Stewart14-Jul-04 5:47 
GeneralComboBox problems... :( Pin
Radoslav Bielik14-Jul-04 3:41
Radoslav Bielik14-Jul-04 3:41 
GeneralRe: ComboBox problems... resolved (probably) Pin
Radoslav Bielik14-Jul-04 5:12
Radoslav Bielik14-Jul-04 5:12 
Questionhow to check language of Outlook Pin
Stephan Wright14-Jul-04 3:17
Stephan Wright14-Jul-04 3:17 
AnswerRe: how to check language of Outlook Pin
Nick Parker14-Jul-04 3:39
protectorNick Parker14-Jul-04 3:39 
You do not need to do it this way. You can write you application so it is localized in different languages without the reliance of Outlook. You need to look at the ResourceManager class here[^]. The ResourceManager will extract resources from your assembly. You will specify the CultureInfo based on the current thread, this is what tells the ResourceManager which *language* (i.e., the culture) is used and to extract the appropriate resources. A simple example is as follows:

ResourceManager rsmgr = new ResourceManager("entries", Assembly.GetExecutingAssembly());
CultureInfo ci = Thread.CurrentThread.CurrentCulture;
string msg = rsmgr.GetString("title", ci);


- Nick Parker
My Blog | My Articles

GeneralRe: how to check language of Outlook Pin
Stephan Wright14-Jul-04 4:00
Stephan Wright14-Jul-04 4:00 
GeneralRe: how to check language of Outlook Pin
Nick Parker14-Jul-04 5:11
protectorNick Parker14-Jul-04 5:11 
AnswerRe: how to check language of Outlook Pin
Ivaylo®14-Jul-04 5:18
Ivaylo®14-Jul-04 5:18 
GeneralRe: how to check language of Outlook Pin
Nick Parker14-Jul-04 6:21
protectorNick Parker14-Jul-04 6:21 
GeneralRe: how to check language of Outlook Pin
Stephan Wright14-Jul-04 21:25
Stephan Wright14-Jul-04 21:25 
GeneralRe: how to check language of Outlook Pin
Ivaylo®14-Jul-04 21:56
Ivaylo®14-Jul-04 21:56 
GeneralWindowsForm Styles too Limited Pin
3green14-Jul-04 3:04
3green14-Jul-04 3:04 
GeneralRe: WindowsForm Styles too Limited Pin
Gary Thom14-Jul-04 4:24
Gary Thom14-Jul-04 4:24 
GeneralInternet Explorer, Flash and OnClick message... Pin
Alex Getman14-Jul-04 1:50
Alex Getman14-Jul-04 1:50 
GeneralRe: Internet Explorer, Flash and onclick message... Pin
Nick Parker14-Jul-04 3:21
protectorNick Parker14-Jul-04 3:21 
GeneralRe: Internet Explorer, Flash and onclick message... Pin
Alex Getman14-Jul-04 4:16
Alex Getman14-Jul-04 4:16 
GeneralRe: Internet Explorer, Flash and onclick message... Pin
Nick Parker14-Jul-04 4:50
protectorNick Parker14-Jul-04 4:50 
GeneralSetup and Installation Project Pin
Praveen Nayak14-Jul-04 0:19
Praveen Nayak14-Jul-04 0:19 
GeneralRe: Setup and Installation Project Pin
Heath Stewart14-Jul-04 5:11
protectorHeath Stewart14-Jul-04 5:11 
GeneralRe: Setup and Installation Project Pin
Praveen Nayak14-Jul-04 5:23
Praveen Nayak14-Jul-04 5:23 
GeneralRe: Setup and Installation Project Pin
Heath Stewart14-Jul-04 5:42
protectorHeath Stewart14-Jul-04 5:42 
GeneralYou Can Also Post Your Openion. Pin
sreejith ss nair13-Jul-04 22:57
sreejith ss nair13-Jul-04 22: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.