The AutomaticUpdater automatically checks for updates and it won't show you any status if there are no updates available. Does that make sense?
Create updates with wyBuild
I want to work on a program code vb.net
I found this
VB.NET:Public Sub New() InitializeComponent()
' only load files, etc. when NOT closing to install an update If Not automaticUpdater.ClosingForInstall Then ' load important files, etc. ' LoadFilesEtc() End IfEnd Sub
VB.NET:Private Sub automaticUpdater_ClosingAborted(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles automaticUpdater.ClosingAborted ' your app was preparing to close ' however the update wasn't ready so your app is going to show itself ' LoadFilesEtc()End Sub
but, I did not understand
Other currency steps correctly
The AutomaticUpdater automatically checks for updates and it won't show you any status if there are no updates available. Does that make sense?
The wyUpdate executable was not found: C:\Users\ASUS\documents\visual studio 2013\Projects\WindowsApplication2\WindowsApplication2\bin\Debug\wyUpdate.exe
Public Class Form1 Public Sub New() InitializeComponent()
' only load files, etc. when NOT closing to install an update If Not AutomaticUpdater1.ClosingForInstall Then ' load important files, etc. ' LoadFilesEtc() End If End Sub Private Sub AutomaticUpdater1_ClosingAborted(sender As Object, e As EventArgs) Handles AutomaticUpdater1.ClosingAborted ' your app was preparing to close ' however the update wasn't ready so your app is going to show itself ' LoadFilesEtc()
End SubEnd Class
It's telling you exactly what is wrong. wyUpdate.exe was not found at that location. So... put it in that location.
Short answer: follow the tutorial: https://wyday.com/wybuild/help/walkthrough.php
Specifically step 4.