Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Windows Forms / WinForm General / July 2004

Tip: Looking for answers? Try searching our database.

Forms created in a separate thread are shown in the background

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Sunil Menon - 27 Jul 2004 07:07 GMT
Dear All,
  I am trying to create multiple forms using thread...when one of the
external application requests for a Form my MainThread creates the
Form in a new thread...the form appears in the ForeGround if it has
been created for the first time...but subsequent creations are created
behind the application that invokes it...if I remove creation of Form
in a thread it works fine...Wot is going wrong here...
Here is the code snippet...
Thread oFormThread = new Thread(new ThreadStart(OpenFormInThread));
oFormThread.ApartmentState = ApartmentState.STA;       
oFormThread.IsBackground = false;

[STAThread]
public void OpenFormInThread()
{
 Form ofrm = (Form)Activator.CreateInstance(typ);
 ofrm.ShowDialog();
 if(ofrm != null)
    ofrm.Close();
}

In the Form's Load I have written...
ShowWindow(this.Handle , SW_RESTORE);
SetForegroundWindow(this.Handle );
this.BringToFront();

But this does not seem to work...am I doing something wrong here?
Please help...

TALIA

Many Regards
Jack
Herfried K. Wagner [MVP] - 27 Jul 2004 12:01 GMT
* sunil@itb-india.com (Sunil Menon) scripsit:
> I am trying to create multiple forms using thread...when one of the
> external application requests for a Form my MainThread creates the
> Form in a new thread...the form appears in the ForeGround if it has

Create all forms in the app's main UI thread and use invoking to access
them from within another thread:

Multithreading:

<URL:http://msdn.microsoft.com/library/en-us/dnforms/html/winforms06112002.asp>
<URL:http://msdn.microsoft.com/library/en-us/dnforms/html/winforms08162002.asp>
<URL:http://msdn.microsoft.com/library/en-us/dnforms/html/winforms01232003.asp>

<URL:http://www.devx.com/dotnet/Article/11358/>

<URL:http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWindowsFormsContro
lClassInvokeTopic.asp
>

Multithreading in Visual Basic .NET (Visual Basic Language Concepts)
<URL:http://msdn.microsoft.com/library/en-us/vbcn7/html/vaconthreadinginvisualbasic.asp>

Signature

M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://dotnet.mvps.org/dotnet/faqs/


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.