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

C#

 
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 
AnswerRe: Thread Newbie: Cannot access other thread Pin
Nick Hounsome8-Dec-05 22:01
Nick Hounsome8-Dec-05 22:01 
The GUI is not threadsafe therefore ALL GUI operations must be done on the GUI thread.

See Control.InvokeRequired & Control.Invoke

Typically you would want to raise an event on the form and have a thread safe
handler something like:
private void OnXXX(object source,EventArgs args)
{
    if( InvokeRequired )
        Invoke( new EventHandler(OnXXX), new object[] {source,args});
    else
    {
        // update gui
    }
}

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 
AnswerRe: Serial Comunication In C# Pin
bouli8-Dec-05 20:22
bouli8-Dec-05 20:22 

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.