Calling an event

  • Thread starter Thread starter arm
  • Start date Start date
Arm,

Call Forms("NameOfOtherForm").NameOfProcedure
Note that the procedure on the other form will need to be declared as
Public, e.g.
Public Sub blabla()
 
Back
Top