About web, please help me.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • chucksu
    Forum Member
    • Jun 2005
    • 5

    About web, please help me.

    I would like to make a simple system for my small application.

    When user would like to install my software, they need to link to my website first, then they just can install the software which I made. If the users do not link to internet then they can not install the software.

    Does anyone know how to make it? Please teach me. Thanks a lot.

  • Corey
    Indigo Rose Staff Alumni
    • Aug 2002
    • 9745

    #2
    Hi. The easiest way is jut to add a File.OpenURL action to your page's OnShow event, that would ensure everyone sees your web site. :yes

    Comment

    • rhosk
      Indigo Rose Customer
      • Aug 2003
      • 1698

      #3
      You could also do something like this --


      result = HTTP.TestConnection("http://www.YOURWEBSITE.com/", 20, 80, nil, nil);
      if result then
      Dialog.TimedMessage("Internet Connection Detected.", "It appears that you're online.", 5000, MB_ICONINFORMATION);
      -- do something here
      else
      Dialog.TimedMessage("No Internet Connection Detected", "It appears that you're not online.", 5000, MB_ICONINFORMATION);
      -- do something else here
      end

      Many ways to accomplish what you're asking
      Regards,

      -Ron

      Music | Video | Pictures

      Comment

      Working...
      X