Hey ich hab e mir ein Updater erstellt und nun hab ich das Problem das wen ich das weiter schiken dsa es nicht Funktioniert da kommt den das
breadfish.de/wcf/attachment/3877/
PHP
Imports System.Net
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
MsgBox("Updats Werden Gesucht...")
If My.Computer.FileSystem.FileExists("C:\Nordtrans-Logistik Map Updater\map-version.txt") Then
My.Computer.FileSystem.DeleteFile("C:\Nordtrans-Logistik Map Updater\map-version.txt")
End If
If My.Computer.FileSystem.FileExists("C:\Nordtrans-Logistik Map Updater\Redme.txt") Then
My.Computer.FileSystem.DeleteFile("C:\Nordtrans-Logistik Map Updater\Redme.txt")
End If
Timer1.Start()
My.Computer.Network.DownloadFile("http://www.nordtrans-logistik.de/ucp/update/pAktuelle version.txt", "C:\Nordtrans-Logistik Map Updater\pAktuelle version.txt", Nothing, Nothing, False, 10000, True)
My.Computer.Network.DownloadFile("http://www.nordtrans-logistik.de/ucp/update/mAktuelle version.txt", "C:\Nordtrans-Logistik Map Updater\mAktuelle version.txt", Nothing, Nothing, False, 10000, True)
My.Computer.Network.DownloadFile("http://www.nordtrans-logistik.de/ucp/update/map-version.txt", "C:\Nordtrans-Logistik Map Updater\map-version.txt", Nothing, Nothing, False, 10000, True)
My.Computer.Network.DownloadFile("http://www.nordtrans-logistik.de/ucp/update/Redme.txt", "C:\Nordtrans-Logistik Map Updater\Redme.txt", Nothing, Nothing, False, 10000, True)
If mapv.Text < My.Computer.FileSystem.ReadAllText("C:\Nordtrans-Logistik Map Updater\map-version.txt") Then
If MsgBox("Wollen Sie ein Update Duchführen", MsgBoxStyle.YesNo, "Updaten?") = MsgBoxResult.Yes Then
My.Computer.Network.DownloadFile("http://www.nordtrans-logistik.de/ucp/update/mAktuelle version.txt", "C:\Nordtrans-Logistik Map Updater\mAktuelle version.txt", Nothing, Nothing, False, 10000, True)
Else : Exit Sub
End If
Else
MsgBox("Du hast bereits die neuste Version." & vbCrLf & mapv.Text)
Timer1.Stop()
End If
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
MsgBox("Updats Werden Gesucht...")
If My.Computer.FileSystem.FileExists("C:\Nordtrans-Logistik Map Updater\version.txt") Then
My.Computer.FileSystem.DeleteFile("C:\Nordtrans-Logistik Map Updater\version.txt")
End If
My.Computer.Network.DownloadFile("http://www.nordtrans-logistik.de/ucp/update/version.txt", "C:\Nordtrans-Logistik Map Updater\version.txt", Nothing, Nothing, False, 10000, True)
If pr.Text < My.Computer.FileSystem.ReadAllText("C:\Nordtrans-Logistik Map Updater\version.txt") Then
If MsgBox("Wollen Sie ein Update Duchführen", MsgBoxStyle.YesNo, "Updaten?") = MsgBoxResult.Yes Then
My.Computer.Network.DownloadFile("http://www.nordtrans-logistik.de/ucp/update/pAktuelle version.txt", "C:\Nordtrans-Logistik Map Updater\pAktuelle version.txt", Nothing, Nothing, False, 10000, True)
Else : Exit Sub
End If
Else
MsgBox("Du hast bereits die neuste Version." & vbCrLf & "Version:" & mapv.Text)
End If
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
mapv.Text = IO.File.ReadAllText("Map Version:" & mapv.Text = IO.File.ReadAllText("C:\Nordtrans-Logistik Map Updater\pAktuelle version.txt"))
pr.Text = IO.File.ReadAllText("Programm Version:") & mapv.Text & ("C:\Nordtrans-Logistik Map Updater\mAktuelle version.txt")
End Sub
End Class
Alles anzeigen
Kann mir da wer helfen?
lg kifkat