Click here to Skip to main content
15,905,508 members
Home / Discussions / C#
   

C#

 
Questiondata and picker control in winforms using c3.net Pin
Ch.Gayatri Subudhi1-Mar-10 17:36
Ch.Gayatri Subudhi1-Mar-10 17:36 
AnswerRe: data and picker control in winforms using c3.net Pin
rah_sin1-Mar-10 19:25
professionalrah_sin1-Mar-10 19:25 
Questiontry catch in C# Pin
jojoba20111-Mar-10 17:17
jojoba20111-Mar-10 17:17 
AnswerRe: try catch in C# Pin
Nematjon Rahmanov1-Mar-10 19:13
Nematjon Rahmanov1-Mar-10 19:13 
AnswerRe: try catch in C# Pin
Dave Kreskowiak1-Mar-10 19:14
mveDave Kreskowiak1-Mar-10 19:14 
QuestionRe: try catch in C# Pin
jojoba20111-Mar-10 19:24
jojoba20111-Mar-10 19:24 
AnswerRe: try catch in C# Pin
N a v a n e e t h1-Mar-10 20:12
N a v a n e e t h1-Mar-10 20:12 
AnswerRe: try catch in C# Pin
Richard MacCutchan1-Mar-10 22:28
mveRichard MacCutchan1-Mar-10 22:28 
Move i outside the try/catch block so it is visible in all sections, something like:
int i;
try
{
    i=0;
    int j=2;
    int k=j/i;
}
catch(Exception e)
{
    string msg = "i = " + i + " " + e.Message;
    messagebox.show(msg);
}
txtspeak is the realm of 9 year old children, not developers. Christian Graus

AnswerRe: try catch in C# Pin
PIEBALDconsult2-Mar-10 4:08
mvePIEBALDconsult2-Mar-10 4:08 
AnswerRe: try catch in C# Pin
carlecomm2-Mar-10 17:36
carlecomm2-Mar-10 17:36 
QuestionStreamReader Pin
jojoba20111-Mar-10 17:01
jojoba20111-Mar-10 17:01 
AnswerRe: StreamReader Pin
Dr.Walt Fair, PE1-Mar-10 17:49
professionalDr.Walt Fair, PE1-Mar-10 17:49 
QuestionRe: StreamReader Pin
jojoba20111-Mar-10 18:01
jojoba20111-Mar-10 18:01 
AnswerRe: StreamReader Pin
Dr.Walt Fair, PE1-Mar-10 18:12
professionalDr.Walt Fair, PE1-Mar-10 18:12 
QuestionRe: StreamReader [modified] Pin
jojoba20111-Mar-10 19:07
jojoba20111-Mar-10 19:07 
AnswerRe: StreamReader Pin
Dr.Walt Fair, PE2-Mar-10 4:46
professionalDr.Walt Fair, PE2-Mar-10 4:46 
AnswerRe: StreamReader Pin
V.1-Mar-10 20:01
professionalV.1-Mar-10 20:01 
AnswerRe: StreamReader Pin
carlecomm2-Mar-10 17:57
carlecomm2-Mar-10 17:57 
QuestionSpeechSynthesizer memory leak Pin
FocusedWolf1-Mar-10 16:16
FocusedWolf1-Mar-10 16:16 
AnswerRe: SpeechSynthesizer memory leak Pin
Dave Kreskowiak1-Mar-10 19:10
mveDave Kreskowiak1-Mar-10 19:10 
GeneralRe: SpeechSynthesizer memory leak Pin
FocusedWolf2-Mar-10 1:46
FocusedWolf2-Mar-10 1:46 
GeneralRe: SpeechSynthesizer memory leak Pin
Dave Kreskowiak2-Mar-10 13:04
mveDave Kreskowiak2-Mar-10 13:04 
GeneralRe: SpeechSynthesizer memory leak Pin
FocusedWolf3-Mar-10 18:12
FocusedWolf3-Mar-10 18:12 
GeneralRe: SpeechSynthesizer memory leak Pin
Dave Kreskowiak4-Mar-10 1:33
mveDave Kreskowiak4-Mar-10 1:33 
AnswerRe: SpeechSynthesizer memory leak Pin
DudeFX55714-Mar-10 18:42
DudeFX55714-Mar-10 18:42 

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.