I need to be able to do this x.show where x = form2
Something to that extent where i can just pass the form name to x and do the show if not im going to have a case statment from here to the moon.
Thanks
Printable View
I need to be able to do this x.show where x = form2
Something to that extent where i can just pass the form name to x and do the show if not im going to have a case statment from here to the moon.
Thanks
create var:
private x as form2 (or form)
then:
set x = form2
x.show
should work.