Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

coding button press

Status
Not open for further replies.

kerrigirrl

Programmer
Mar 29, 2001
39
US
is there a way to code:

if response = vbyes then
***(automatically press the RESUME button)***
else
msgbox...
 
Provided that your Resume button has a click event you could say...

if response = vbyes then
Call Resume_Click
else
msgbox...

B-) ljprodev@yahoo.com
ProDev
MS Access Applications
 
There is no way to make the application actually click the button, but if you have a function or a procedure you can call it :
response = vbyes
Call myfuntion
'or call cmdResume_Click()


I think that's what your looking for.

Let me know.

Bob
 
that's exactly what i'm looking for.

thanks so much!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top