F
Frank
Hello, how do I do this:
classA
sub A
dim frmA as new frmA
frmA.showdialog
end sub A
sub B
some stuff
end sub B
end classA
==========
frmA
call sub B in classA
end frmA
Forget the syntax, I want to call sub B in classA where frmA was created.
How do I do that?
Thanx for your help.
Frank
classA
sub A
dim frmA as new frmA
frmA.showdialog
end sub A
sub B
some stuff
end sub B
end classA
==========
frmA
call sub B in classA
end frmA
Forget the syntax, I want to call sub B in classA where frmA was created.
How do I do that?
Thanx for your help.
Frank