In the YesNo Message Box the default focus is on the YES button , if I want the default focus on NO button , what should I do?
In the YesNo Message Box the default focus is on the YES button , if I want the default focus on NO button , what should I do?
when you call the message box, you set it in the parameters e.g.
MsgBox "is this what you want?", vbYesNo + vbDefaultButton2
Review https://support.office.com/en-us/art...6-BA9F1749F4C0
MsgBox("text", vbDefaultButton2 + vbYesNo, "text")
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Thanks a lot!!!!! GOD BLESS YOU!!!!!!!!!Review https://support.office.com/en-us/art...6-BA9F1749F4C0
MsgBox("text", vbDefaultButton2 + vbYesNo, "text")