Click here to Skip to main content
15,890,512 members
Home / Discussions / C#
   

C#

 
GeneralRe: Printer Is Print Slowly And Stoped....C# Pin
Syed Mujtaba Hassan25-Sep-06 0:18
Syed Mujtaba Hassan25-Sep-06 0:18 
GeneralRe: Printer Is Print Slowly And Stoped....C# Pin
galigal1525-Sep-06 1:32
galigal1525-Sep-06 1:32 
GeneralRe: Printer Is Print Slowly And Stoped....C# Pin
Syed Mujtaba Hassan25-Sep-06 19:02
Syed Mujtaba Hassan25-Sep-06 19:02 
GeneralRe: Printer Is Print Slowly And Stoped....C# Pin
galigal1526-Sep-06 1:46
galigal1526-Sep-06 1:46 
GeneralRe: Printer Is Print Slowly And Stoped....C# Pin
Syed Mujtaba Hassan27-Sep-06 22:58
Syed Mujtaba Hassan27-Sep-06 22:58 
QuestionPrinter Is Print Slowly And Stoped...... Pin
galigal1520-Sep-06 19:07
galigal1520-Sep-06 19:07 
Questionhow to recognise thread Pin
Parshant Verma20-Sep-06 18:57
Parshant Verma20-Sep-06 18:57 
AnswerRe: how to recognise thread Pin
S. Senthil Kumar20-Sep-06 20:07
S. Senthil Kumar20-Sep-06 20:07 
Use one of the many signaling mechanisms possible to notify the other thread of this thread's completion. The simplest way is to use a boolean variable

volatile bool continueAnimation = true;

void AnimationFunc()
{
   while (continueAnimation)
   {
        // do animation
   }
}


void ThreadFunc()
{
   // Do thread work
   continueAnimation = false;
}


Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro

QuestionFew qustions Pin
NaNg1524120-Sep-06 18:08
NaNg1524120-Sep-06 18:08 
AnswerRe: Few qustions Pin
yueue20-Sep-06 19:00
yueue20-Sep-06 19:00 
GeneralRe: Few qustions Pin
NaNg1524121-Sep-06 7:23
NaNg1524121-Sep-06 7:23 
QuestionWhich Control is Best To Draw Graphs? Pin
...---...20-Sep-06 16:17
...---...20-Sep-06 16:17 
AnswerRe: Which Control is Best To Draw Graphs? Pin
Christian Graus20-Sep-06 16:44
protectorChristian Graus20-Sep-06 16:44 
AnswerRe: Which Control is Best To Draw Graphs? Pin
Judah Gabriel Himango20-Sep-06 16:45
sponsorJudah Gabriel Himango20-Sep-06 16:45 
AnswerRe: Which Control is Best To Draw Graphs? Pin
yueue20-Sep-06 19:03
yueue20-Sep-06 19:03 
QuestionTrue/False DB Field display Yes/No instead Pin
Glen Harvy20-Sep-06 15:04
Glen Harvy20-Sep-06 15:04 
AnswerRe: True/False DB Field display Yes/No instead Pin
Christian Graus20-Sep-06 15:12
protectorChristian Graus20-Sep-06 15:12 
GeneralRe: True/False DB Field display Yes/No instead Pin
Glen Harvy20-Sep-06 15:20
Glen Harvy20-Sep-06 15:20 
GeneralRe: True/False DB Field display Yes/No instead Pin
Christian Graus20-Sep-06 15:38
protectorChristian Graus20-Sep-06 15:38 
GeneralRe: True/False DB Field display Yes/No instead Pin
Glen Harvy20-Sep-06 16:15
Glen Harvy20-Sep-06 16:15 
GeneralRe: True/False DB Field display Yes/No instead Pin
Christian Graus20-Sep-06 16:39
protectorChristian Graus20-Sep-06 16:39 
Questionhow to use TableAdapter in Vs2005 ? Pin
hdv21220-Sep-06 11:05
hdv21220-Sep-06 11:05 
QuestionString COllection or Dictionary Pin
Saamir20-Sep-06 10:41
Saamir20-Sep-06 10:41 
AnswerRe: String COllection or Dictionary Pin
Christian Graus20-Sep-06 11:44
protectorChristian Graus20-Sep-06 11:44 
Questiondeveloping P2P application with C# Pin
asamay20-Sep-06 10:01
asamay20-Sep-06 10:01 

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.