Hi I created this based on the info from the other post
Private Sub RadMenuItemUpdate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadMenuItemUpdate.Click Select Case AutomaticUpdater1.UpdateStepOn Case UpdateStepOn.Checking, UpdateStepOn.DownloadingUpdate, UpdateStepOn.ExtractingUpdate
AutomaticUpdater1.Cancel() Exit Select
Case UpdateStepOn.UpdateReadyToInstall, UpdateStepOn.UpdateAvailable, UpdateStepOn.UpdateDownloaded
AutomaticUpdater1.InstallNow() Exit Select Case Else
AutomaticUpdater1.Visible = True AutomaticUpdater1.ForceCheckForUpdate() Exit Select End Select End Sub
I created a new project in wyBuild I added the two files to my project when I hit checkupdate I get this error
wyUpdate ended before the current update step could be completed.
if I run the wyUpdate.exe it tells me my software is up to date?
I was using
Private Sub RadMenuItemUpdate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadMenuItemUpdate.Click ' If AutomaticUpdater1.Visible = True Then ' AutomaticUpdater1.ForceCheckForUpdate() ' Else ' AutomaticUpdater1.Visible = True ' AutomaticUpdater1.ForceCheckForUpdate() ' End IfEnd Sub
which was working fine but not anymore any idea what wrong