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 / August 2005

Tip: Looking for answers? Try searching our database.

Application.Run

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
VISHAL - 04 Aug 2005 01:03 GMT
I am developing a windows form with a login screen.Once a user succesfully
logs in,I want to close the login screen and run the main application.

I dont want to use show dialog box.I would like to use application.run for
both the forms.

Please let me know what is a good way to do it.
Any help is highly appreciated.

Thanks
swashi - 04 Aug 2005 14:21 GMT
In order to open the second form using the Application.Run, once the user
successfully logs in, exit from the thread on which login form is running
using
'Application.ExitThread()' and spawn a new thread. The thread will be
spawned using System.Threading.Thread.  Now another form can be run using
Application.Run on newly spawned thread.

Sample Code:
The following code for the button click event of the 'login button'  enables
the user to log in and run the second form using Application.Run as well.


                           System.Threading.Thread td;
        private void button1_Click(object sender, EventArgs e)
        {
           
            if(this.textBox1.Text=="a" && this.textBox2.Text=="a")
             {
               
               
                Application.ExitThread();
                Thread td = new Thread(new ThreadStart(ss));
                td.Start();

            }   

        }
        protected void ss()
        {
            MessageBox.Show("new thread is running");
            Application.Run(new Form2());
        }

> I am developing a windows form with a login screen.Once a user succesfully
> logs in,I want to close the login screen and run the main application.
[quoted text clipped - 6 lines]
>
> Thanks

Rate this thread:







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.