Click here to Skip to main content
15,887,214 members
Home / Discussions / C#
   

C#

 
GeneralRe: Append to Excel Pin
noamtzu007-Mar-10 5:31
noamtzu007-Mar-10 5:31 
GeneralRe: Append to Excel Pin
Dan Mos7-Mar-10 5:37
Dan Mos7-Mar-10 5:37 
GeneralRe: Append to Excel Pin
Pete O'Hanlon7-Mar-10 9:23
mvePete O'Hanlon7-Mar-10 9:23 
AnswerNo matter how many times you ask the same question... Pin
Not Active7-Mar-10 9:07
mentorNot Active7-Mar-10 9:07 
AnswerRe: Append to Excel Pin
Dave Kreskowiak7-Mar-10 15:49
mveDave Kreskowiak7-Mar-10 15:49 
AnswerRe: Append to Excel Pin
Wes Aday7-Mar-10 17:58
professionalWes Aday7-Mar-10 17:58 
QuestionInputLanguage Pin
ali_reza_zareian7-Mar-10 4:42
ali_reza_zareian7-Mar-10 4:42 
AnswerRe: InputLanguage Pin
Dan Mos7-Mar-10 4:49
Dan Mos7-Mar-10 4:49 
the text box doesn't do any automatically formats for the string/values.

Format the string using string.Format() and then set the text to the text box.
Or use a masked text box with a custom mask or...

or something like:
System.Globalization.CultureInfo cultur = new  System.Globalization.CultureInfo("fa-IR");                  
InputLanguage.CurrentInputLanguage = InputLanguage.FromCulture(cultur);

decimal moneyvalue = 1921.39m;
txextBox1.Text = String.Format("{0:C}", moneyvalue);//C from curency

GeneralRe: InputLanguage Pin
ali_reza_zareian7-Mar-10 4:54
ali_reza_zareian7-Mar-10 4:54 
GeneralRe: InputLanguage Pin
Dan Mos7-Mar-10 5:03
Dan Mos7-Mar-10 5:03 
QuestionC# interface inheritance Pin
Shane55557-Mar-10 3:06
Shane55557-Mar-10 3:06 
AnswerRe: C# interface inheritance Pin
#realJSOP7-Mar-10 3:13
mve#realJSOP7-Mar-10 3:13 
AnswerRe: C# interface inheritance Pin
DaveyM697-Mar-10 3:44
professionalDaveyM697-Mar-10 3:44 
GeneralRe: C# interface inheritance Pin
harold aptroot7-Mar-10 4:27
harold aptroot7-Mar-10 4:27 
GeneralRe: C# interface inheritance Pin
AspDotNetDev7-Mar-10 5:58
protectorAspDotNetDev7-Mar-10 5:58 
GeneralRe: C# interface inheritance Pin
harold aptroot7-Mar-10 6:24
harold aptroot7-Mar-10 6:24 
AnswerRe: C# interface inheritance Pin
Shane55557-Mar-10 4:08
Shane55557-Mar-10 4:08 
GeneralRe: C# interface inheritance Pin
AspDotNetDev7-Mar-10 4:16
protectorAspDotNetDev7-Mar-10 4:16 
GeneralRe: C# interface inheritance Pin
PIEBALDconsult7-Mar-10 14:24
mvePIEBALDconsult7-Mar-10 14:24 
QuestionOOPs And Debugging Techniques Pin
DotNetMan7-Mar-10 1:21
DotNetMan7-Mar-10 1:21 
AnswerRe: OOPs And Debugging Techniques Pin
dan!sh 7-Mar-10 1:28
professional dan!sh 7-Mar-10 1:28 
AnswerRe: OOPs And Debugging Techniques Pin
AspDotNetDev7-Mar-10 3:00
protectorAspDotNetDev7-Mar-10 3:00 
AnswerRe: OOPs And Debugging Techniques Pin
dybs7-Mar-10 15:22
dybs7-Mar-10 15:22 
AnswerRe: OOPs And Debugging Techniques Pin
N a v a n e e t h7-Mar-10 3:33
N a v a n e e t h7-Mar-10 3:33 
AnswerRe: OOPs And Debugging Techniques Pin
DotNetMan9-Mar-10 1:07
DotNetMan9-Mar-10 1:07 

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.