Intellisoft Box Question

B

Bob

--
After searching Google.groups.com and finding no answer, Bob Vance asked:

When my Intellisoft box comes up on screen it asks me if I want to [Save]
the [No] button is high lighted how can I change it to the [Yes] button!

Thanks in advance.........Bob Vance
 
B

Bob

For those interested:
You have to change the code written for on-click event of Save button. Open
the form in design mode, right click to see Properties window. On the events
tab of Properties scroll to On Click event. Click a ...(triple dots button)
beside "Event Procedure". This open code window,

Please goto following line of code and replace with new line I had given.



If MsgBox("Do You Want To Save?", vbQuestion + vbApplicationModal + vbYesNo
+ vbDefaultButton2, "Intellisoft") = vbYes Then
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top