How to create a program to download files for free on the internet in vb using the inet

how to create , vb.net , prac , tech Durban, South Africa
  • 9 years ago

    I've been trying and trying to create a program in vb.net 2008 using the inet it just give me ERROR if i include some thing like this Inet.icDefault the n I've done it like this now it does connect to the internet now Public Class frmHTTP

    Private Sub cmdgo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdgo.Click
    
        Timer1.Start()
        On Error Resume Next
        If txtURL.Text <> "" Then
            Inet1.OpenURL.Equals(txtURL.Text)
            Call WebBrowser1.Navigate(txtURL.Text)
    
        End If
    End Sub
    
    Private Sub frmHTTP_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        ProgressBar1.Visible = False
        cmdback.Visible = False
        cmdhome.Visible = False
        cmdnext.Visible = False
        cmdrefresh.Visible = False
        cmdgo.Visible = False
        cmdstop.Visible = False
        txtURL.Text = "http://www.mcsi.wall.fm/"
        Dim home As String
        home = "http://www.mcsi.wall.fm/"
        Call WebBrowser1.Navigate(txtURL.Text)
    
    End Sub
    

    End Class

Post a reply

No one has replied yet! Why not be the first?

Sign in or Join us (it's free).

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“Debugging is anticipated with distaste, performed with reluctance, and bragged about forever.” - Dan Kaminsky