Re: Hyperlink in a message box
- Posted by ghaberek (admin) Apr 21, 2009
- 889 views
Do you need to display the hyperlink? Couldn't you just ask them if they want to go download the software, and if they click Yes, launch the website? Example:
atom result result = message_box( "You do not have Program X installed.\n" & "Would you like to download it now?", "Missing Program", MB_ICONQUESTION + MB_YESNO ) if result = IDYES then shellExecute( "open", "http://www.google.com/", SW_SHOWNORMAL ) end if
-Greg