View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
GJ GJ is offline
external usenet poster
 
Posts: 2
Default put a procedure into comments with code

Hi,
How can I put this procedure into comments :
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Call quitter_Quandclic
End Sub
like :
'Private Sub Workbook_BeforeClose(Cancel As Boolean)
' Call quitter_Quandclic
'End Sub
with code VBA

and then come back to the original

Thanks

GJ