Click here to Skip to main content
15,886,065 members
Home / Discussions / C#
   

C#

 
AnswerRe: how to make the backgroundworker run untill the threads are completed Pin
Gareth H12-Jul-08 1:32
Gareth H12-Jul-08 1:32 
Questionhow to set values from datagrid to string variable Pin
Technobizz11-Jul-08 22:22
Technobizz11-Jul-08 22:22 
QuestionHow to read a streaming data and display on the browser? Pls help [modified] Pin
MyRunner2311-Jul-08 21:14
MyRunner2311-Jul-08 21:14 
AnswerRe: How to read a streaming data and display on the browser? Pls help Pin
MyRunner2312-Jul-08 15:52
MyRunner2312-Jul-08 15:52 
QuestionProblem with MarshalByRefObject Pin
Przemyslaw Celej11-Jul-08 20:51
Przemyslaw Celej11-Jul-08 20:51 
Questionretrieve photos from MOSS2007? Pin
kju00211-Jul-08 20:16
kju00211-Jul-08 20:16 
QuestionHow to call other application from one application on button click-VC++ in .NET Pin
paresh_sarjani11-Jul-08 19:40
paresh_sarjani11-Jul-08 19:40 
AnswerRe: How to call other application from one application on button click-VC++ in .NET Pin
Elroy Dsilva11-Jul-08 21:35
Elroy Dsilva11-Jul-08 21:35 
Use the System.Diagnostics namespace. It includes the Process object that lets you run external programs.

using System.Diagnostics;
...
...

Process p = new Process("notepad.exe");
p.Start();

It also includes methods such as WaitForExit() that tells your program to wait till the process it terminated, and also the 'StartInfo' that lets you set customized settings for running a program. Browse the namespace for more details.
GeneralRe: How to call other application from one application on button click-VC++ in .NET Pin
paresh_sarjani11-Jul-08 21:40
paresh_sarjani11-Jul-08 21:40 
GeneralRe: How to call other application from one application on button click-VC++ in .NET Pin
Elroy Dsilva11-Jul-08 21:45
Elroy Dsilva11-Jul-08 21:45 
GeneralRe: How to call other application from one application on button click-VC++ in .NET Pin
paresh_sarjani12-Jul-08 18:12
paresh_sarjani12-Jul-08 18:12 
GeneralRe: How to call other application from one application on button click-VC++ in .NET Pin
paresh_sarjani12-Jul-08 18:41
paresh_sarjani12-Jul-08 18:41 
QuestionProblem With Rich Text Box Pin
D i x y11-Jul-08 19:24
D i x y11-Jul-08 19:24 
AnswerRe: Problem With Rich Text Box Pin
Giorgi Dalakishvili12-Jul-08 0:55
mentorGiorgi Dalakishvili12-Jul-08 0:55 
AnswerRe: Problem With Rich Text Box Pin
Mohammad Dayyan12-Jul-08 10:31
Mohammad Dayyan12-Jul-08 10:31 
QuestionCustom sorting Pin
anton-0911-Jul-08 18:32
anton-0911-Jul-08 18:32 
QuestionStoring HTML within XML Pin
Nadia Monalisa11-Jul-08 13:17
Nadia Monalisa11-Jul-08 13:17 
AnswerRe: Storing HTML within XML Pin
Guffa11-Jul-08 14:54
Guffa11-Jul-08 14:54 
GeneralRe: Storing HTML within XML Pin
Nadia Monalisa11-Jul-08 21:43
Nadia Monalisa11-Jul-08 21:43 
AnswerRe: Storing HTML within XML Pin
Guffa11-Jul-08 21:55
Guffa11-Jul-08 21:55 
QuestionHow can we read XML line by line ? Pin
Mohammad Dayyan11-Jul-08 12:26
Mohammad Dayyan11-Jul-08 12:26 
AnswerRe: How can we read XML line by line ? Pin
Guffa11-Jul-08 14:57
Guffa11-Jul-08 14:57 
GeneralRe: How can we read XML line by line ? Pin
Mohammad Dayyan12-Jul-08 1:55
Mohammad Dayyan12-Jul-08 1:55 
GeneralRe: How can we read XML line by line ? Pin
Guffa12-Jul-08 8:24
Guffa12-Jul-08 8:24 
GeneralRe: How can we read XML line by line ? Pin
Mohammad Dayyan12-Jul-08 10:37
Mohammad Dayyan12-Jul-08 10:37 

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.