Auto update failed

hi i am new to auto updates

i had included AutomaticUpdater.dll in my application and checked the autoupdates option

autoupdates doesnot start evevn when there is new version update.

i have to click check for updates to check updates by force.

and i got the following error

"Error trying to save file: Error downloading "http://mywebitename.net/updates/Appupdates.all.to.1.32.wyu": The operation has timed out"

may i know where is the changes needed ?

i am unable to understand this what part i have to do in my coding

i just leave the following segment as it is..

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) ' your app was preparing to close ' however the update wasn't ready so your app is going to show itself ' LoadFilesEtc() End Sub

i did not write any codes inside this

' load important files, etc. ' LoadFilesEtc()

what have to given in loading important files and ' LoadFilesEtc()

and i got the following error

"Error trying to save file: Error downloading "http://mywebitename.net/updates/Appupdates.all.to.1.32.wyu": The operation has timed out"

This means the update failed to download. Did you upload the update? Try running that site in Internet Explorer - does it download?

ok i checked the http site manually and get download then i cleared the cache files.

later i checked for auto update it updates fine.may be previos time internet connection drop may be problem during download.

thanks and may i know following things . i didn't understand.

Public Sub New()InitializeComponent()

' only load files, etc. when NOT closing to install an updateIf Not automaticUpdater.ClosingForInstall Then' load important files, etc.' LoadFilesEtc()End IfEnd Sub

Private Sub automaticUpdater_ClosingAborted(ByVal sender As System.Object, ByVal e As System.EventArgs)' your app was preparing to close' however the update wasn't ready so your app is going to show itself' LoadFilesEtc()End Sub

what files or coding have to given inside above events.

what files or coding have to given inside above events.

If your program opens files by commandline then you should put those loading statements where the comments are. For instance, wyBuild loads project files (*.wyp files) in this manner.