I'm looking to put a yes/no message box -- here is what I am using:
lResult& = MSGBOX("Do you want a printout",%MB_YESNO, "test")
Even the example from the help won't work:
lResult& = MSGBOX("Overwrite registry file?", %MB_OKCANCEL OR %MB_DEFBUTTON2 OR %MB_TASKMODAL, "Critical Warning")
I have come to the conclusion that I need to download one of the equates from the WIN32API.INC file.
Am I correct? Can you suggest which file should be downloaded and used? Or am way off target?
Thanks.
Steve
lResult& = MSGBOX("Do you want a printout",%MB_YESNO, "test")
Even the example from the help won't work:
lResult& = MSGBOX("Overwrite registry file?", %MB_OKCANCEL OR %MB_DEFBUTTON2 OR %MB_TASKMODAL, "Critical Warning")
I have come to the conclusion that I need to download one of the equates from the WIN32API.INC file.
Am I correct? Can you suggest which file should be downloaded and used? Or am way off target?
Thanks.
Steve
Comment