Ok im updateing this thread this what i get when i open the project
Attachment 96903
this is what i want it to do but the problem i get is when it completes i want it to disappear then show the main form how can this be done this is my code
Private Sub update_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Timer1.Start()
Dim web As New WebClient
Dim update As String = web.DownloadString("https://dl.dropbox.com/u/101312477/update.txt")
If update.Contains(Application.ProductVersion) Then
MsgBox("No New Update")
Form1.Show()
Else
MsgBox("New Update")
End If
End Sub
Attachment 96903
this is what i want it to do but the problem i get is when it completes i want it to disappear then show the main form how can this be done this is my code
Private Sub update_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Timer1.Start()
Dim web As New WebClient
Dim update As String = web.DownloadString("https://dl.dropbox.com/u/101312477/update.txt")
If update.Contains(Application.ProductVersion) Then
MsgBox("No New Update")
Form1.Show()
Else
MsgBox("New Update")
End If
End Sub