Click here to Skip to main content
15,897,891 members
Home / Discussions / C#
   

C#

 
QuestionDelay during first use of Exception Pin
harwanegg5-Sep-05 3:28
harwanegg5-Sep-05 3:28 
AnswerRe: Delay during first use of Exception Pin
Andy Brummer5-Sep-05 4:12
sitebuilderAndy Brummer5-Sep-05 4:12 
AnswerRe: Delay during first use of Exception Pin
Daniel Turini5-Sep-05 6:38
Daniel Turini5-Sep-05 6:38 
GeneralRe: Delay during first use of Exception Pin
harwanegg5-Sep-05 20:21
harwanegg5-Sep-05 20:21 
QuestionT-SQL Clause Pin
Greeky5-Sep-05 3:18
Greeky5-Sep-05 3:18 
AnswerRe: T-SQL Clause Pin
Andy Brummer5-Sep-05 4:20
sitebuilderAndy Brummer5-Sep-05 4:20 
QuestionNumber Formatting Pin
Brendan Vogt5-Sep-05 1:56
Brendan Vogt5-Sep-05 1:56 
AnswerRe: Number Formatting Pin
Guffa5-Sep-05 2:37
Guffa5-Sep-05 2:37 
Look at the Math.Round(double, digits) method, the Double.ToString(format) method, and the String.Format(format, ...) method.

Examples:

double n = 3.1415926536;
double d = Math.Round(n, 3);

string s = n.ToString("0.###");

string s = n.ToString("c2", new CultureInfo(1053))

int i = 42;
string s = String.Format("Code: {0:00000}.", i);


---
b { font-weight: normal; }

QuestionOverlapping Images Pin
dhanunjay5-Sep-05 1:49
dhanunjay5-Sep-05 1:49 
QuestionImage Resizing in a Picture box using c# Pin
dhanunjay5-Sep-05 1:41
dhanunjay5-Sep-05 1:41 
AnswerRe: Image Resizing in a Picture box using c# Pin
Martin#5-Sep-05 8:41
Martin#5-Sep-05 8:41 
QuestionTIFF file with included color schema Pin
yarns5-Sep-05 0:52
yarns5-Sep-05 0:52 
QuestionImporting a DLL at runtime Pin
totig4-Sep-05 23:09
totig4-Sep-05 23:09 
AnswerRe: Importing a DLL at runtime Pin
totig4-Sep-05 23:52
totig4-Sep-05 23:52 
GeneralRe: Importing a DLL at runtime Pin
mav.northwind5-Sep-05 2:17
mav.northwind5-Sep-05 2:17 
GeneralRe: Importing a DLL at runtime Pin
totig5-Sep-05 2:25
totig5-Sep-05 2:25 
GeneralRe: Importing a DLL at runtime Pin
mav.northwind5-Sep-05 10:26
mav.northwind5-Sep-05 10:26 
AnswerRe: Importing a DLL at runtime Pin
Luis Alonso Ramos5-Sep-05 7:26
Luis Alonso Ramos5-Sep-05 7:26 
QuestionHow to find inner length (number of cols) in a rectangular array? Pin
signbit4-Sep-05 22:46
signbit4-Sep-05 22:46 
AnswerRe: How to find inner length (number of cols) in a rectangular array? Pin
Guffa4-Sep-05 22:53
Guffa4-Sep-05 22:53 
AnswerRe: How to find inner length (number of cols) in a rectangular array? Pin
Andrew Kirillov4-Sep-05 22:56
Andrew Kirillov4-Sep-05 22:56 
GeneralRe: How to find inner length (number of cols) in a rectangular array? Pin
signbit4-Sep-05 23:00
signbit4-Sep-05 23:00 
QuestionCrystal Report Pin
| Muhammad Waqas Butt |4-Sep-05 22:27
professional| Muhammad Waqas Butt |4-Sep-05 22:27 
QuestionMulti Line TextBox for Addresses Pin
Greeky4-Sep-05 22:19
Greeky4-Sep-05 22:19 
AnswerRe: Multi Line TextBox for Addresses Pin
philip_cole4-Sep-05 23:21
philip_cole4-Sep-05 23:21 

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.