ok put a webbrowser on a form and try this
Code:
Public Class Form1

    Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
        ' this takes the first link on the page and navigatres to this page
        ' we put the if so that it doesn't do it once it reaches any page other than matrixclub.com
        If WebBrowser1.Url.AbsoluteUri = "http://matrixclub.com/" Then
            Dim link As String = WebBrowser1.Document.Links.Item(1).InnerText
            WebBrowser1.Navigate(link)
        End If
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        WebBrowser1.Navigate("http://matrixclub.com/")
    End Sub
End Class
p.s. that site has now vanished lol