Click here to Skip to main content
15,885,810 members
Home / Discussions / C#
   

C#

 
GeneralRe: Help with drawing a 2D beveled Pie Chart Pin
Raul00718-Sep-05 19:21
Raul00718-Sep-05 19:21 
GeneralRe: Help with drawing a 2D beveled Pie Chart Pin
mav.northwind19-Sep-05 3:49
mav.northwind19-Sep-05 3:49 
GeneralRe: Help with drawing a 2D beveled Pie Chart Pin
Raul00719-Sep-05 6:36
Raul00719-Sep-05 6:36 
QuestionWindows Mobile 5 Details and .NET Compact 2.0 Pin
bragac20016-Sep-05 10:55
bragac20016-Sep-05 10:55 
AnswerRe: Windows Mobile 5 Details and .NET Compact 2.0 Pin
thrakazog18-Sep-05 5:17
thrakazog18-Sep-05 5:17 
QuestionDisplay numerical value in DataGrid Pin
zaboboa16-Sep-05 8:02
zaboboa16-Sep-05 8:02 
AnswerRe: Display numerical value in DataGrid Pin
Guffa16-Sep-05 9:53
Guffa16-Sep-05 9:53 
AnswerRe: Display numerical value in DataGrid Pin
miah alom16-Sep-05 10:35
miah alom16-Sep-05 10:35 
string currencyValue = "4509223";

NumberFormatInfo numberFormatInfo = null;
double currency = 0.0;
currency = Convert.ToDouble(currencyValue);
numberFormatInfo = new NumberFormatInfo();
numberFormatInfo.CurrencyDecimalDigits = 2;
numberFormatInfo.CurrencyDecimalSeparator = ".";
numberFormatInfo.CurrencyGroupSeparator = ",";
int[] groups = new int[1];
groups[0] = 3;
numberFormatInfo.CurrencyGroupSizes = groups;
numberFormatInfo.CurrencySymbol = "";
string formattedCurrencyValue = currency.ToString("c",numberFormatInfo);

GeneralRe: Display numerical value in DataGrid Pin
zaboboa19-Sep-05 2:32
zaboboa19-Sep-05 2:32 
GeneralRe: Display numerical value in DataGrid Pin
miah alom19-Sep-05 3:54
miah alom19-Sep-05 3:54 
GeneralRe: Display numerical value in DataGrid Pin
zaboboa19-Sep-05 4:05
zaboboa19-Sep-05 4:05 
GeneralRe: Display numerical value in DataGrid Pin
miah alom19-Sep-05 4:27
miah alom19-Sep-05 4:27 
GeneralRe: Display numerical value in DataGrid Pin
zaboboa19-Sep-05 5:14
zaboboa19-Sep-05 5:14 
GeneralRe: Display numerical value in DataGrid Pin
zaboboa19-Sep-05 5:31
zaboboa19-Sep-05 5:31 
GeneralRe: Display numerical value in DataGrid Pin
miah alom19-Sep-05 8:00
miah alom19-Sep-05 8:00 
QuestionSeeking advice on proper control to use: Datagrid, listview, other? Pin
Glenn E. Lanier II16-Sep-05 7:55
Glenn E. Lanier II16-Sep-05 7:55 
AnswerRe: Seeking advice on proper control to use: Datagrid, listview, other? Pin
Turtle Hand16-Sep-05 9:25
Turtle Hand16-Sep-05 9:25 
GeneralRe: Seeking advice on proper control to use: Datagrid, listview, other? Pin
Glenn E. Lanier II16-Sep-05 9:48
Glenn E. Lanier II16-Sep-05 9:48 
JokeRe: Seeking advice on proper control to use: Datagrid, listview, other? Pin
Anonymous17-Sep-05 0:28
Anonymous17-Sep-05 0:28 
Questionautomating a web based service Pin
gashach16-Sep-05 7:55
gashach16-Sep-05 7:55 
AnswerRe: automating a web based service Pin
Andy Brummer16-Sep-05 18:22
sitebuilderAndy Brummer16-Sep-05 18:22 
GeneralRe: automating a web based service Pin
gashach19-Sep-05 4:57
gashach19-Sep-05 4:57 
GeneralRe: automating a web based service Pin
Andy Brummer19-Sep-05 7:00
sitebuilderAndy Brummer19-Sep-05 7:00 
GeneralRe: automating a web based service Pin
gashach19-Sep-05 7:20
gashach19-Sep-05 7:20 
AnswerRe: automating a web based service Pin
Thaynann18-Sep-05 12:10
Thaynann18-Sep-05 12:10 

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.