Click here to Skip to main content
15,898,920 members
Home / Discussions / C#
   

C#

 
Generalread stream to unmanaged memory Pin
ZejulioZ5-Jul-05 17:03
ZejulioZ5-Jul-05 17:03 
GeneralRe: read stream to unmanaged memory Pin
leppie5-Jul-05 20:08
leppie5-Jul-05 20:08 
GeneralRe: read stream to unmanaged memory Pin
ZejulioZ5-Jul-05 20:59
ZejulioZ5-Jul-05 20:59 
GeneralRe: read stream to unmanaged memory Pin
leppie5-Jul-05 23:26
leppie5-Jul-05 23:26 
QuestionExecutable Wrapper in C# Anyone? Pin
dotbomb5-Jul-05 16:43
dotbomb5-Jul-05 16:43 
QuestionHow to get the user fastswitch, User Logon and logoff event Pin
aocraft5-Jul-05 15:13
aocraft5-Jul-05 15:13 
QuestionReusing threads? Pin
Lord Kixdemp5-Jul-05 14:54
Lord Kixdemp5-Jul-05 14:54 
AnswerRe: Reusing threads? Pin
S. Senthil Kumar5-Jul-05 19:58
S. Senthil Kumar5-Jul-05 19:58 
It's not possible to reuse aborted threads. What you can do is simply stop and wait instead of aborting the thread. Something like
void ThreadFunc()
{
   while(true)
   {
     if (isStopped)
     {
        startEvent.WaitOne();
     }
     
     // play your file.
   }
}


Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
GeneralRe: Reusing threads? Pin
Anonymous16-Jul-05 11:30
Anonymous16-Jul-05 11:30 
General.net 2005 beta2 auto generated staic class Pin
Member 6362865-Jul-05 10:14
Member 6362865-Jul-05 10:14 
GeneralRe: .net 2005 beta2 auto generated staic class Pin
Judah Gabriel Himango5-Jul-05 11:11
sponsorJudah Gabriel Himango5-Jul-05 11:11 
GeneralRe: .net 2005 beta2 auto generated staic class Pin
Member 6362865-Jul-05 12:21
Member 6362865-Jul-05 12:21 
GeneralRe: .net 2005 beta2 auto generated staic class Pin
Judah Gabriel Himango5-Jul-05 18:41
sponsorJudah Gabriel Himango5-Jul-05 18:41 
GeneralRe: .net 2005 beta2 auto generated staic class Pin
Member 6362865-Jul-05 22:14
Member 6362865-Jul-05 22:14 
GeneralShell Output Pin
Nazadus5-Jul-05 9:56
Nazadus5-Jul-05 9:56 
GeneralRe: Shell Output Pin
Scott Serl5-Jul-05 11:37
Scott Serl5-Jul-05 11:37 
GeneralRe: Shell Output Pin
Nazadus6-Jul-05 1:51
Nazadus6-Jul-05 1:51 
GeneralDisplaying Write statements in Debuger Output window Pin
zaboboa5-Jul-05 9:24
zaboboa5-Jul-05 9:24 
GeneralRe: Displaying Write statements in Debuger Output window Pin
Colin Angus Mackay5-Jul-05 12:08
Colin Angus Mackay5-Jul-05 12:08 
GeneralChild form, which stays in front Pin
Ronen Kfir5-Jul-05 9:18
Ronen Kfir5-Jul-05 9:18 
GeneralRe: Child form, which stays in front Pin
MoustafaS5-Jul-05 12:43
MoustafaS5-Jul-05 12:43 
GeneralChild form, which stays in front Pin
sea#5-Jul-05 9:17
sea#5-Jul-05 9:17 
GeneralRe: Child form, which stays in front Pin
ZejulioZ5-Jul-05 16:12
ZejulioZ5-Jul-05 16:12 
GeneralPassing the values among Forms Pin
Anonymous5-Jul-05 9:05
Anonymous5-Jul-05 9:05 
GeneralRe: Passing the values among Forms Pin
Judah Gabriel Himango5-Jul-05 9:07
sponsorJudah Gabriel Himango5-Jul-05 9:07 

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.