D
Dustin Davis
I'm creating a wizard and I've got multiple paths a user can go through
and multiple forms depending on the options they choose on each form.
Is it possible to have a form return a value, much like a function?
For example:
Dim Step1 As New frmStep1
FileType = Step1.ShowDialog
.... or even passing values by reference:
Dim Step1 As New frmStep1(FileType, FileName)
Step1.ShowDialog()
and multiple forms depending on the options they choose on each form.
Is it possible to have a form return a value, much like a function?
For example:
Dim Step1 As New frmStep1
FileType = Step1.ShowDialog
.... or even passing values by reference:
Dim Step1 As New frmStep1(FileType, FileName)
Step1.ShowDialog()