Results 1 to 4 of 4

Thread: Visual Basic Browser Isssue

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2012
    Posts
    2

    Angry Visual Basic Browser Isssue

    Hello Everyone,

    I hope this is the right place i'm posting this, basically I need some help with Visual Basic 2008.

    We've been set a task to build a really basic web browser with one advanced function. I've done the web browser with the basic functionality, but this advanced feature really has got me stumped.

    The advanced feature is a "most visited site" feature. I need to create some kind of listbox, that keeps track of all the websites visited (when the go button is pressed) and arranges them in the most popular order (i.e. the one that has been clicked the most)

    Furthermore, it states that substrings should be used so that for example if you go to http://vbforums.com and go to http://vbforums.com/test that counts as 1 hit.

    I've been breaking my head out, because I'm sure its something to do with arrays, but he did say you will need to use multiple procedures/strings/functions....

    Hope someone out there can help me

    Thanks,
    Jake

  2. #2
    Frenzied Member
    Join Date
    Jan 2009
    Location
    Watch Window(Shift+f9)
    Posts
    1,879

    Smile Re: Visual Basic Browser Isssue

    This is vb6 Forum .anyway can you provide what you have written.
    and where y are confessing ? .
    Last edited by firoz.raj; Mar 8th, 2012 at 02:18 PM.

  3. #3

    Thread Starter
    New Member
    Join Date
    Mar 2012
    Posts
    2

    Re: Visual Basic Browser Isssue

    Hello,

    Yes sure, its really basic at the moment, its just:

    Code:
    Public Class Form1
    
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    
    myWebBrowser.Navigate(TextBox1.Text)
    
    End Sub
    
    End Class

  4. #4
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,930

    Re: Visual Basic Browser Isssue

    Welcome to VBForums

    Thread moved from the 'VB6 and Earlier' forum to the 'VB.Net' (VB2002 and later) forum

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width