Click here to Skip to main content
15,893,486 members
Home / Discussions / C#
   

C#

 
GeneralRe: api DLL for audio shutdown/reset pc:doh: Pin
Dave Kreskowiak9-Dec-05 3:27
mveDave Kreskowiak9-Dec-05 3:27 
AnswerRe: api DLL for audio shutdown/reset pc Pin
Dave Kreskowiak9-Dec-05 3:31
mveDave Kreskowiak9-Dec-05 3:31 
GeneralRe: api DLL for audio shutdown/reset pc Pin
denpsia11-Dec-05 13:09
denpsia11-Dec-05 13:09 
GeneralRe: api DLL for audio shutdown/reset pc Pin
Dave Kreskowiak11-Dec-05 15:16
mveDave Kreskowiak11-Dec-05 15:16 
GeneralRe: api DLL for audio shutdown/reset pc Pin
denpsia11-Dec-05 18:12
denpsia11-Dec-05 18:12 
GeneralRe: api DLL for audio shutdown/reset pc Pin
Dave Kreskowiak12-Dec-05 12:10
mveDave Kreskowiak12-Dec-05 12:10 
QuestionThread Newbie: Cannot access other thread Pin
2hdass8-Dec-05 17:59
2hdass8-Dec-05 17:59 
AnswerRe: Thread Newbie: Cannot access other thread Pin
mikanu8-Dec-05 19:20
mikanu8-Dec-05 19:20 
Usually it is a bad practice to allow the worker thread to access and actually process data on the main thread. Usually what you do is you create a separate class that will contain the thread method along with some data and create an event that the worker thread may trigger when it needs to notify the main thread that it has updated some data. Then the main thread, having subscribed to the event, will learn about the changes and take a look at the data members of the other thread's class and then act on them.

Be carefull though that when two threads access the same data there is a good chance for race conditions to happen. Google for an introductory article on C# Multithreading and do some reading on locks, mutexes.. race conditions and dead locks before you start wrting multithreading code.
AnswerRe: Thread Newbie: Cannot access other thread Pin
Nick Hounsome8-Dec-05 22:01
Nick Hounsome8-Dec-05 22:01 
QuestionC#,which Release version is better for downloading NAnt build tool? Pin
sridevi20058-Dec-05 17:50
sridevi20058-Dec-05 17:50 
QuestionWebBrowser not receiving Keystrokes Pin
Arun Appukuttan8-Dec-05 17:25
Arun Appukuttan8-Dec-05 17:25 
QuestionFormatting the data Pin
Winds8-Dec-05 15:53
Winds8-Dec-05 15:53 
QuestionPage Orientation Pin
tatchung8-Dec-05 15:26
tatchung8-Dec-05 15:26 
AnswerRe: Page Orientation Pin
Dave Kreskowiak8-Dec-05 15:58
mveDave Kreskowiak8-Dec-05 15:58 
GeneralRe: Page Orientation Pin
tatchung8-Dec-05 16:11
tatchung8-Dec-05 16:11 
GeneralRe: Page Orientation Pin
Dave Kreskowiak9-Dec-05 3:23
mveDave Kreskowiak9-Dec-05 3:23 
QuestionHow to make datagrid in winform like webform? Pin
dexom8-Dec-05 15:05
dexom8-Dec-05 15:05 
AnswerRe: How to make datagrid in winform like webform? Pin
denpsia8-Dec-05 20:50
denpsia8-Dec-05 20:50 
QuestionHelp!! Capture user login date and time Pin
momoo8-Dec-05 14:07
momoo8-Dec-05 14:07 
AnswerRe: Help!! Capture user login date and time Pin
Vikram A Punathambekar8-Dec-05 16:41
Vikram A Punathambekar8-Dec-05 16:41 
GeneralRe: Help!! Capture user login date and time Pin
momoo8-Dec-05 17:01
momoo8-Dec-05 17:01 
GeneralRe: Help!! Capture user login date and time Pin
Vikram A Punathambekar8-Dec-05 20:52
Vikram A Punathambekar8-Dec-05 20:52 
QuestionCrystal Report in visual studio .net Pin
ayuba asia8-Dec-05 12:23
ayuba asia8-Dec-05 12:23 
QuestionSerial Comunication In C# Pin
ayuba asia8-Dec-05 12:06
ayuba asia8-Dec-05 12:06 
AnswerRe: Serial Comunication In C# Pin
Dave Kreskowiak8-Dec-05 15:54
mveDave Kreskowiak8-Dec-05 15:54 

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.