View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default User_Form's Caller

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"



PerlDev wrote:

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?


--

Dave Peterson