Click here to Skip to main content
16,005,339 members
Home / Discussions / C#
   

C#

 
QuestionTransparency (like Rainlendar) Pin
jgallen231-Feb-06 15:37
jgallen231-Feb-06 15:37 
AnswerRe: Transparency (like Rainlendar) Pin
Dave Kreskowiak1-Feb-06 16:47
mveDave Kreskowiak1-Feb-06 16:47 
GeneralRe: Transparency (like Rainlendar) Pin
jgallen231-Feb-06 20:58
jgallen231-Feb-06 20:58 
GeneralRe: Transparency (like Rainlendar) Pin
Dave Kreskowiak2-Feb-06 1:54
mveDave Kreskowiak2-Feb-06 1:54 
QuestionQuick Threading Question Pin
Mr. Rogers1-Feb-06 13:02
Mr. Rogers1-Feb-06 13:02 
AnswerRe: Quick Threading Question Pin
S. Senthil Kumar1-Feb-06 13:21
S. Senthil Kumar1-Feb-06 13:21 
GeneralRe: Quick Threading Question Pin
Mr. Rogers1-Feb-06 13:33
Mr. Rogers1-Feb-06 13:33 
GeneralRe: Quick Threading Question Pin
Mark Greenwood1-Feb-06 13:54
Mark Greenwood1-Feb-06 13:54 
If your question was how to kick off a seperate process (e.g. another application) from within you current program then the previous answer will be the key, however it looked from your question as if you wanted to kick off a seperate THREAD from within your program, in that case you would create a new thread, start it off and then call Join to wait for it to finish.

e.g
<br />
ThreadStart ts = new ThreadStart(StartExtrapolation); // Name of some void function<br />
Thread thThread = new Thread(ts);<br />
thThread.Start();<br />
thThread.Join(); // Can take a timeout variable as well if you want<br />
<br />
// Any code after this will either happen after the thread has finished or if a timeout occured<br />
<stuff><br />

GeneralRe: Quick Threading Question Pin
Mr. Rogers2-Feb-06 5:18
Mr. Rogers2-Feb-06 5:18 
Question[C# & ASP.net] Control instances as null Pin
Distinctive1-Feb-06 12:19
Distinctive1-Feb-06 12:19 
AnswerRe: [C# & ASP.net] Control instances as null Pin
Distinctive2-Feb-06 0:18
Distinctive2-Feb-06 0:18 
QuestionVS 2005 C# Class Wizard - it is gone? Pin
LuluSailor1-Feb-06 11:58
LuluSailor1-Feb-06 11:58 
AnswerRe: VS 2005 C# Class Wizard - it is gone? Pin
James Gupta1-Feb-06 21:01
professionalJames Gupta1-Feb-06 21:01 
QuestionSQLDMO for Oracle Pin
sam3151-Feb-06 11:42
sam3151-Feb-06 11:42 
QuestionUsing delegates with remoting in .net 2.0 Pin
Oyvind Hansen1-Feb-06 11:22
Oyvind Hansen1-Feb-06 11:22 
QuestionRemove a Child Entry from AD Pin
osamahmirza1-Feb-06 10:54
osamahmirza1-Feb-06 10:54 
QuestionControlling the focus Pin
3Dizard1-Feb-06 9:27
3Dizard1-Feb-06 9:27 
Questiontabcontrol glitchy Pin
jasonmog1-Feb-06 9:26
jasonmog1-Feb-06 9:26 
AnswerRe: tabcontrol glitchy Pin
Mark Greenwood1-Feb-06 13:47
Mark Greenwood1-Feb-06 13:47 
GeneralRe: tabcontrol glitchy Pin
jasonmog2-Feb-06 2:48
jasonmog2-Feb-06 2:48 
QuestionAproximate string matching Pin
Elvio Fernandez1-Feb-06 9:14
Elvio Fernandez1-Feb-06 9:14 
AnswerRe: Aproximate string matching Pin
Ingo1-Feb-06 21:39
Ingo1-Feb-06 21:39 
GeneralRe: Aproximate string matching Pin
Elvio Fernandez2-Feb-06 17:52
Elvio Fernandez2-Feb-06 17:52 
Question Additional C# 2005 Code Snippets From Microsoft Pin
Kevin McFarlane1-Feb-06 8:46
Kevin McFarlane1-Feb-06 8:46 
QuestionCrystal Viewer 9 RDC Pin
Bedevian1-Feb-06 8:33
Bedevian1-Feb-06 8:33 

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.