What errors? (Compilation errors I assume, but could you list them for me?)
Edit: I've added VB.NET examples to the AutomaticUpdater help page. Here's a full example form:
Public Class Form1 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 If End Sub
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 SubEnd Class
Tell me if this helps.