How to Call a Procedure

P

Paul

Hi All,
I have a procedure called WriteStuffToExcel and I need to
call it from a form. How do I do this?
 
A

aj

just type the name of the procedure
ex:

Private Sub button1_Click()
WriteStuffToExcel
End Sub
 
Top