06-25-2010 03:45 AM
Hi,
How do i link different user forms?
For example if i have a continue button in my user form, and want to link it to other user form, how do i do that?
Is it in the script i should link it?
rgds,
Rash
07-05-2010 01:59 AM - edited 07-05-2010 02:00 AM
Hello Rash,
use the same command you used in the vb-script to open the first userform.
Use this command in the code behind the button:
Sub Button1_EventClick()
Dim This : Set This = Button1
Call suddlgshow("name_of_dialog","name_of_sud_file")
End Sub
best regards, Tobias