J
Jesper
If I have a private sub in form1:
Private Sub cmdOK_click()
End sub
And I want to run this from within form2's module - is that possible?
Or must I make it public as:
Public Sub cmdOK_click()
End sub
Or should I just put the content of it in a public sub and run that from
where ever I need it?
Public sub myOKcode()
End sub
Thanks,
Jesper
Private Sub cmdOK_click()
End sub
And I want to run this from within form2's module - is that possible?
Or must I make it public as:
Public Sub cmdOK_click()
End sub
Or should I just put the content of it in a public sub and run that from
where ever I need it?
Public sub myOKcode()
End sub
Thanks,
Jesper