Hi,

I want to call multiple forms one after the other.
But i want them to show up when the last one is finsihed.
I am calling them from a seperate module, which has:

dim Frm1 As New Form_Task1
dim Frm2 As New Form_Task2
dim Frm3 As New Form_Task3


Frm1.ShowDialog() ' would like to show this form and wait for the user to select a button
Frm2.ShowDialog()' Show this when the previous form has finished...

Do i need to setup a return value and set variable = Frm1.ShowDialog ?

Can someone show me how this is done?

cheers,

toil