link to a web page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lee123
    Contributor
    • Feb 2007
    • 556

    link to a web page

    how do you put a link to a web page in your code? i have a check box named Not listed if they click on this i would like to have an web link in there so they can view it.

    lee123
  • lee123
    Contributor
    • Feb 2007
    • 556

    #2
    well actually i mean when they click on the check box named "Not Listed" then it would go to a web page I've assigned to it in code.. is this possible?

    lee123

    Comment

    • kadghar
      Recognized Expert Top Contributor
      • Apr 2007
      • 1302

      #3
      yes, but you'll have to use ActiveX to open IExplorer,

      or SHELL to open any browser you prefer

      e.g. for IE:

      [CODE=vb]dim obj1 as object
      set obj1 = createobject("i nternetexplorer .application")
      obj1.visible=tr ue
      obj1.navigate(" http://bytes.com")[/CODE]

      ^.^ HTH

      Comment

      • lee123
        Contributor
        • Feb 2007
        • 556

        #4
        you put this in the checkbox

        Comment

        • lee123
          Contributor
          • Feb 2007
          • 556

          #5
          thanks it worked!

          lee123

          Comment

          Working...