Link to home
Start Free TrialLog in
Avatar of tech_question
tech_question

asked on

how to customize messages in a message box ?

Can I over the Yes, No and Cancel buttons with someother message that I can customize with ?

Is there any other control for this ?

Eg: the buttons should read "Manual "  "Both"  "Fax"


agree=msgbox("You are exiting this entry." & vbCrLf & vbCrLf & "Press OK to save changes!", 3, "")

if (agree=vbYes) then
     confirmSignType = "M"
elseif (agree=vbNo) then
     confirmSignType = "F"
else confirmSignType = "B"
end if
ASKER CERTIFIED SOLUTION
Avatar of cquinn
cquinn
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jim Horn
cquinn is correct.  The msgbox dialog does not allow you to feed it specific button captions; you can only use what it offers.