Click here to Skip to main content
15,891,316 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

i am using 3 form in my solution using c#.

my first form us used for progress bar. the timer ends the second form will be shown.

now i'm having a table in database, if the data present in table the form 3 should show else form 2 should show.
Posted

1 solution

in page_load()
create object of form you want to call

Form2 obj = new Form2();


obj.Show();
 
Share this answer
 
Comments
sid2x 4-Sep-13 6:45am    
Simple and Straight 5/5 :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900