How to Call a Procedure

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Hi All,
I have a procedure called WriteStuffToExcel and I need to
call it from a form. How do I do this?
 
just type the name of the procedure
ex:

Private Sub button1_Click()
WriteStuffToExcel
End Sub
 
Back
Top