Results 1 to 4 of 4

Thread: VB6.0 link html page

  1. #1
    Join Date
    Jan 2009
    Posts
    124

    VB6.0 link html page

    I need a hand with a program in vb that should display a web address and then refer to the web page through the default browser. on the PC should have installed vb 6.0 someone knows how to do?
    that control should I use?

  2. #2
    Join Date
    Oct 2008
    Posts
    167

    Re: VB6.0 link html page

    I've never done with VB6 .... issues until someone meets you,

    find a lot of projects created with:
    Visual Basic
    Java / Javascript
    C / C + +
    ASP
    SQL
    Perl
    Delphi
    PHP
    Cold Fusion
    . Net

    Maybe you find something that helps you.

  3. #3
    Join Date
    Jan 2009
    Posts
    124

    Re: VB6.0 link html page

    Thanks but I have not yet found, in practice should see a label with a html link that leads to the browser ... .

  4. #4
    Join Date
    Mar 2008
    Posts
    232

    Re: VB6.0 link html page

    I need a hand with a program in vb that should display a web address and then refer to the web page through the default browser. on the PC should have installed vb 6.0 someone knows how to do?
    that control should I use?
    User a simple label (in VB6 there is the link-label VB Net, but they can be accommodated). This should suffice:

    Code:
    Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _ 
                               (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, _ 
                                ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long 
    
      Private Sub lbl_link_Click () 
    
              ShellExecute ByVal 0 &, "open", "http://www.google.com", _ 
              vbNullString, vbNullString, 3 
    
      End Sub

Similar Threads

  1. Changing link color when moving mouse over link in HTML
    By Cade in forum Software Development
    Replies: 5
    Last Post: 22-01-2010, 07:46 PM
  2. How to link CSS into the HTML file?
    By Zhankana_n in forum Software Development
    Replies: 5
    Last Post: 23-12-2009, 03:02 PM
  3. How to link documents in HTML
    By Saaz in forum Software Development
    Replies: 3
    Last Post: 17-11-2009, 01:40 PM
  4. Link HTML and Powerpoint
    By Connect_Me in forum Software Development
    Replies: 3
    Last Post: 07-04-2009, 11:54 PM
  5. Html link code problem
    By ByteCoder in forum Software Development
    Replies: 4
    Last Post: 09-02-2009, 06:49 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,288,083.60698 seconds with 17 queries