QUOTE(gbertoli3 @ 14 Oct, 2008 - 06:59 AM)

How did you make the program if you don't know how to get the video. You could just look at your source code.
i want to be able to save the .flv video.... as u can see u cant DL just the video from the code...
CODE
Public Class Form1
Private Sub Button9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button9.Click
Process.Start("http://www.core1rock.site90.net")
End Sub
Private Sub Button8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button8.Click
Process.Start("http://www.core1rock.site90.net/ucp.php?mode=login")
End Sub
Private Sub Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button7.Click
Process.Start("http://www.core1rock.site90.net/ucp.php?mode=register")
End Sub
'This is a code to trap the link clicking event hope it will help to get the button clicking event.
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
Dim olink As HtmlElement
Dim olinks As HtmlElementCollection = WebBrowser1.Document.Links
For Each olink In olinks
olink.AttachEventHandler("onclick", AddressOf LinkClicked)
Next
End Sub
Private Sub LinkClicked(ByVal sender As Object, ByVal e As EventArgs)
Dim link As HtmlElement = WebBrowser1.Document.ActiveElement
Dim url As String = link.GetAttribute("href")
WebBrowser2.Url = New System.Uri(url)
WebBrowser1.Url = New System.Uri("http://core1rock.site90.net/helpernews.html")
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
WebBrowser1.Url = New System.Uri("http://core1rock.site90.net/helpernews.html")
WebBrowser2.Url = New System.Uri("http://core1rock.site90.net/blank.html")
End Sub
Private Sub Button10_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button10.Click
Process.Start("http://users.smartgb.com/g/g.php?a=s&i=g18-22620-e1")
End Sub
End Class