User_Form's Caller

P

PerlDev

I have User_Form A, B and C; Both A and B have button to make C show
up. When C is called, how to know it's called by either A or B?
 
D

Dave Peterson

I'd declare a public variable in a General module and just keep track.

Public WhichCalled as String

then before you show C, you could use:

WhichCalled = "UserformA"
 
Top