Visual .NET 4

Do you guys have a step by step for visual basic?I can only find a video for C #.

Read the step-by-step walktrough - it has VB.NET code examples for the AutomaticUpdater parts.

Yes I have reviewed that, but it seems incomplete.I am having with the 'LoadFilesEtc() Seems when I take off the ' it is missing something.Here is what I have

Public Class Form1

Public Sub New()

' This call is required by the designer. InitializeComponent() ' only load files, etc. when NOT closing to install an update If Not AutomaticUpdater1.ClosingForInstall Then ' load important files, etc. 'LoadFilesEtc() End If

' Add any initialization after the InitializeComponent() call.

You don't need the LoadFilesEtc() function. It's just a function where you load any settings files. If you're not loading files, just leave it commented.

ok will do, but dont I need a method in this procedure for event?

Private Sub AutomaticUpdater1_ClosingAborted(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AutomaticUpdater1.ClosingAborted End SubEnd Class

ok I got it working.Thanks for the help