Re: Hyperlink in a message box

new topic     » goto parent     » topic index » view thread      » older message » newer message

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

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu