Call Public sub in one form from another

R

Rick Roberts

Its pretty simple however the form that contains the routine you want to
call must be loaded, meaning it’s open.

Dim NewForm as Form
Set NewForm = Forms(FormName) ‘Name of the open form you want to reference
NewForm.routinename
 
Top