Web link in windows app

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • MSN

    Web link in windows app

    VS, VB .net, window App
    How can I create a web link in a Windows base application?
    Will it launch the users default browser?
    How can I launch a new instance of the browser for each link, instead of
    using one instance which would lose the site that the user had in that
    browser?


    Thanks


  • Cor

    #2
    Re: Web link in windows app

    > How can I create a web link in a Windows base application?[color=blue]
    > Will it launch the users default browser?
    > How can I launch a new instance of the browser for each link, instead of
    > using one instance which would lose the site that the user had in that
    > browser?[/color]

    You can try

    Dim p As New ProcessStartInf o
    p.FileName = "http://msdn.microsoft. com"
    p.UseShellExecu te = True
    Process.Start(p )

    I hope this helps?

    Cor


    Comment

    • Cor

      #3
      Re: Web link in windows app

      > How can I create a web link in a Windows base application?[color=blue]
      > Will it launch the users default browser?
      > How can I launch a new instance of the browser for each link, instead of
      > using one instance which would lose the site that the user had in that
      > browser?[/color]

      You can try

      Dim p As New ProcessStartInf o
      p.FileName = "http://msdn.microsoft. com"
      p.UseShellExecu te = True
      Process.Start(p )

      I hope this helps?

      Cor


      Comment

      Working...