Click here to Skip to main content
15,885,141 members
Home / Discussions / C#
   

C#

 
GeneralRe: VS 2005 Server Explorer Pin
benjamin yap2-Aug-08 20:06
benjamin yap2-Aug-08 20:06 
GeneralRe: VS 2005 Server Explorer Pin
Paul Conrad2-Aug-08 20:11
professionalPaul Conrad2-Aug-08 20:11 
GeneralRe: VS 2005 Server Explorer [modified] Pin
benjamin yap2-Aug-08 20:25
benjamin yap2-Aug-08 20:25 
GeneralRe: VS 2005 Server Explorer Pin
Paul Conrad2-Aug-08 20:50
professionalPaul Conrad2-Aug-08 20:50 
GeneralRe: VS 2005 Server Explorer Pin
benjamin yap3-Aug-08 2:29
benjamin yap3-Aug-08 2:29 
QuestionThreading, just professionall please... Pin
mr.mohsen2-Aug-08 6:32
mr.mohsen2-Aug-08 6:32 
AnswerRe: Threading, just professionall please... Pin
Mark Salsbery2-Aug-08 7:30
Mark Salsbery2-Aug-08 7:30 
AnswerRe: Threading, just professionall please... Pin
User 66582-Aug-08 7:41
User 66582-Aug-08 7:41 
One way to gracefully terminate a thread is to set a volatile bool variable to some value and check this value inside the other thread, like this:

public void ButtonClickHandler(Object sender, EventArgs args)
{
   requestStopThread = true; // this is a volatile bool variable
}


Inside your thread you need to check if this variable will be set to true and then terminate the thread in a correct way:

while(!requestStopThread)
{
   // do some stuff, terminate otherwise
}


or

// do something
...

if(requestStopThread)
   // terminate

// do something
...



regards

modified 12-Sep-18 21:01pm.

QuestionDNS issue Pin
George_George2-Aug-08 3:45
George_George2-Aug-08 3:45 
QuestionDownload .css and script files on downloading aspx page [modified] Pin
Medha jha2-Aug-08 1:12
Medha jha2-Aug-08 1:12 
QuestionDNS access error? Pin
George_George2-Aug-08 1:10
George_George2-Aug-08 1:10 
AnswerRe: DNS access error? Pin
S. Senthil Kumar2-Aug-08 7:54
S. Senthil Kumar2-Aug-08 7:54 
GeneralRe: DNS access error? Pin
George_George3-Aug-08 17:22
George_George3-Aug-08 17:22 
QuestionSql Transactions Pin
mrcooll1-Aug-08 23:56
mrcooll1-Aug-08 23:56 
AnswerRe: Sql Transactions Pin
mrcooll2-Aug-08 2:53
mrcooll2-Aug-08 2:53 
AnswerRe: Sql Transactions Pin
PIEBALDconsult2-Aug-08 5:24
mvePIEBALDconsult2-Aug-08 5:24 
QuestionHow to forbid a control to get focus ? Pin
xu_xuthus1-Aug-08 23:55
xu_xuthus1-Aug-08 23:55 
AnswerRe: How to forbid a control to get focus ? Pin
PIEBALDconsult2-Aug-08 5:18
mvePIEBALDconsult2-Aug-08 5:18 
AnswerRe: How to forbid a control to get focus ? Pin
nelsonpaixao3-Aug-08 14:57
nelsonpaixao3-Aug-08 14:57 
QuestionNHibernate Pin
Puneet Bhatnagar1-Aug-08 23:18
Puneet Bhatnagar1-Aug-08 23:18 
AnswerRe: NHibernate Pin
Paul Conrad2-Aug-08 18:56
professionalPaul Conrad2-Aug-08 18:56 
QuestionCollections and sorting using an interface Pin
DaveyM691-Aug-08 21:55
professionalDaveyM691-Aug-08 21:55 
AnswerRe: Collections and sorting using an interface Pin
User 66581-Aug-08 22:56
User 66581-Aug-08 22:56 
GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 2:29
professionalDaveyM692-Aug-08 2:29 
GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 4:11
professionalDaveyM692-Aug-08 4: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.