c# - I have two windows forms and I want to open them one after the other -


my mainform opens fine cant figure out how second form open. read somewhere can have 1 open @ time? in case want second form open first , mainform open afterwards.

the issue i'm running is, initializecomponent(); can't accessed form other 1 attached (as far i've been able find out).

any ideas on i'm supposed great i'm still in learning phase , searching skills haven't turned of use.

you should create instance of form , open it:

form1 form = new form1(); form.show(); 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -