RE: Splash Screen..thread safe

2010-02-26 Thread Greg Keogh
Anthony, the sample cs file I sent you shows how to do Application.Run(formInstance) in a thread. It's surprisingly few lines of code. Greg

RE: Splash Screen..thread safe

2010-02-26 Thread Anthony
If you have some code that would be great...haven't got huge experience with threading From: ausdotnet-boun...@lists.codify.com [mailto:ausdotnet-boun...@lists.codify.com] On Behalf Of James Chapman-Smith Sent: Friday, 26 February 2010 11:03 PM To: 'ausDotNet' Subject: RE

RE: Splash Screen..thread safe

2010-02-26 Thread James Chapman-Smith
een in its own Application Context on a different thread. I can dig some code up if you need it. Cheers. James. From: ausdotnet-boun...@lists.codify.com [mailto:ausdotnet-boun...@lists.codify.com] On Behalf Of Anthony Sent: Friday, 26 February 2010 13:20 To: 'ausDotNet' Subjec

RE: Splash Screen..thread safe

2010-02-25 Thread Greg Keogh
Hi Anthony, I've just send you OFFLIST a copy of my splash screen class from a few years ago. Just in case it might help. The main form creates an instance of the splash class which runs its own message loop in an STA thread. You can call methods of the class to display progress messages from t

RE: Splash Screen..thread safe

2010-02-25 Thread Keir Nathan
otNet' Subject: Splash Screen..thread safe I have created a class to so i can show a splah screen when ever i need to notify information to the user...works fine but having issues when i run it within a thread...how would i make it tread safe? I have instantiated it within the main form...

Splash Screen..thread safe

2010-02-25 Thread Anthony
I have created a class to so i can show a splah screen when ever i need to notify information to the user...works fine but having issues when i run it within a thread...how would i make it tread safe? I have instantiated it within the main form... Imports System.Windows.Forms Publi