Custom Button Click Event Question

  • Thread starter Thread starter Bingo
  • Start date Start date
B

Bingo

I added a button on P.2 tab on a custom form. How do I
add code for the button click event? Thanks.
 
You type it into the form's code window, which you display with the View
Code button.
 
I added a button on P.2 tab on a custom form. How do I
add code for the button click event? Thanks.
<< You type it into the form's code window, which you display with the
View Code button.>>

Don't forget to type in the Handler stub first:

Sub <control name>_click()

<<your code goes here>>

end Sub

Hollis D. Paul [MVP - Outlook]
(e-mail address removed)
Using Virtual Access 4.52 build 277 (32-bit), Windows 2000 build 2600
http://search.support.microsoft.com/kb/c.asp?FR=0&SD=TECH&LN=EN-US

Mukilteo, WA USA
 
Back
Top