VB.NET Turorials and Errors

Hello,

Just downloaded and installed the product today and I'm trying to integrated into my VB.NET application code. Currently I'm having a few issues which I will describe in numbers:

1. I created the initial install and uploaded it to my Web server which is an ASP Windows server hosted by a third party. The first error I got was: Error trying to save file: Error downloading "hxxp://www.blah.com/wyserver.wys": The remote server returned an error: (404) Not Found. I checked the location several times, but still server was not giving it up. It seems it has something to do with the extension.

2. Then I moved on and decided to try and integrate some coding into my application. Being fairly new to VB.net I was looking for more tutorials to guide me along the process with actual coding. However, I couldn't find any real tutorials that gave any step-by-step concrete examples. When I tried to run the code I receive the following error: You must call the Initialize() function before you can use any other functions.

I assumed I had to declare the automatic updater as follows: Dim AutomaticUpdater As AutomaticUpdater = New AutomaticUpdater.

Another example:Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click Dim AutomaticUpdater As AutomaticUpdater = New AutomaticUpdater AutomaticUpdater.ForceCheckForUpdate(True) End Sub

However, I must be missing something. Any help to guide me in the right direction would be most appreciated.

Thank you.

1. I created the initial install and uploaded it to my Web server which is an ASP Windows server hosted by a third party. The first error I got was: Error trying to save file: Error downloading "hxxp://www.blah.com/wyserver.wys": The remote server returned an error: (404) Not Found. I checked the location several times, but still server was not giving it up. It seems it has something to do with the extension.

This is covered in the step-by-step walkthrough (step 3H). http://wyday.com/wybuild/help/faq.php#server

2. Then I moved on and decided to try and integrate some coding into my application. Being fairly new to VB.net I was looking for more tutorials to guide me along the process with actual coding. However, I couldn't find any real tutorials that gave any step-by-step concrete examples.

Step-by-step walkthrough.

You must call the Initialize() function before you can use any other functions.

I assumed I had to declare the automatic updater as follows: Dim AutomaticUpdater As AutomaticUpdater = New AutomaticUpdater.

Don't do that. Just add the AutomaticUpdater to your form.