Click here to Skip to main content
15,899,474 members
Home / Discussions / C#
   

C#

 
GeneralC# Vs C++.net Pin
ppp00118-Mar-04 22:54
ppp00118-Mar-04 22:54 
GeneralRe: C# Vs C++.net Pin
Heath Stewart19-Mar-04 3:58
protectorHeath Stewart19-Mar-04 3:58 
GeneralXml in C# Pin
bertcox18-Mar-04 21:43
bertcox18-Mar-04 21:43 
GeneralRe: Xml in C# Pin
Heath Stewart19-Mar-04 3:49
protectorHeath Stewart19-Mar-04 3:49 
GeneralRe: Xml in C# Pin
bertcox24-Mar-04 20:46
bertcox24-Mar-04 20:46 
GeneralRe: Xml in C# Pin
Heath Stewart25-Mar-04 3:41
protectorHeath Stewart25-Mar-04 3:41 
GeneralTrapping abnormal process termination Pin
Bruce Duncan18-Mar-04 20:11
Bruce Duncan18-Mar-04 20:11 
GeneralRe: Trapping abnormal process termination Pin
Rhys__66618-Mar-04 22:51
Rhys__66618-Mar-04 22:51 
Look up Try...Catch blocks.

E.G.,
private void RunProc()
{
	Process p = new Process();
	p.StartInfo.FileName = "calc.exe";
	p.EnableRaisingEvents = true;
	try
	{
		p.Start();
	}
	catch (Exception exc)
	{
		MessageBox.Show
		(
			OwningForm, 
			"Inner Exception: " + exc.InnerException.ToString() + 
			" Message: " + exc.Message.ToString() + 
			" Source: " + exc.Source.ToString()
		);
	}
}

GeneralRe: Trapping abnormal process termination Pin
Bruce Duncan19-Mar-04 3:02
Bruce Duncan19-Mar-04 3:02 
GeneralRe: Trapping abnormal process termination Pin
Heath Stewart19-Mar-04 3:31
protectorHeath Stewart19-Mar-04 3:31 
GeneralRe: Trapping abnormal process termination Pin
Heath Stewart19-Mar-04 3:45
protectorHeath Stewart19-Mar-04 3:45 
Generalgrab a combo in another app... Pin
Jumpin' Jeff18-Mar-04 14:59
Jumpin' Jeff18-Mar-04 14:59 
GeneralRe: grab a combo in another app... Pin
Heath Stewart19-Mar-04 3:29
protectorHeath Stewart19-Mar-04 3:29 
GeneralRe: grab a combo in another app... Pin
Jumpin' Jeff19-Mar-04 8:18
Jumpin' Jeff19-Mar-04 8:18 
GeneralTyped Datasets Pin
Kant18-Mar-04 12:55
Kant18-Mar-04 12:55 
GeneralRe: Typed Datasets Pin
Heath Stewart18-Mar-04 13:31
protectorHeath Stewart18-Mar-04 13:31 
GeneralMi Web Page en cache !!! Pin
ElJerry18-Mar-04 12:17
ElJerry18-Mar-04 12:17 
GeneralRe: Mi Web Page en cache !!! Pin
Heath Stewart18-Mar-04 13:34
protectorHeath Stewart18-Mar-04 13:34 
GeneralI've a little doubt about decimal fraction !! Pin
ElJerry18-Mar-04 12:07
ElJerry18-Mar-04 12:07 
GeneralRe: I've a little doubt about decimal fraction !! Pin
Christian Graus18-Mar-04 12:36
protectorChristian Graus18-Mar-04 12:36 
GeneralRe: I've a little doubt about decimal fraction !! Pin
Werdna18-Mar-04 16:13
Werdna18-Mar-04 16:13 
GeneralaxWebBrowser DocumentComplete Pin
Jasper4C#18-Mar-04 10:57
Jasper4C#18-Mar-04 10:57 
GeneralRe: axWebBrowser DocumentComplete Pin
John Fisher18-Mar-04 11:35
John Fisher18-Mar-04 11:35 
GeneralRe: axWebBrowser DocumentComplete Pin
Jasper4C#25-Mar-04 11:05
Jasper4C#25-Mar-04 11:05 
GeneralRe: axWebBrowser DocumentComplete Pin
John Fisher25-Mar-04 13:11
John Fisher25-Mar-04 13:11 

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.