Application not closing--process running in task manager

my application not closing some times and in bacground task manager the application process runs.when user want to open the application every time they have to go to task manager and end the processand reopen application again.

any auto updation problem?

what statement have to be give inside this automaticUpdater_ClosingAborted?

any auto updation problem?

I doubt it. Debug your app to see what's causing the problem.

what statement have to be give inside this automaticUpdater_ClosingAborted?

See the AutomaticUpdater tutorial -- specifically the Useful properties and events section.

i am debuged with the application coding . there is no problem.but in client machine some times it occurs i am unable to find where it occurs

could you kindly help me on this..

Can I see your code? (Send it to support@wyday.com ). What are the steps your user goes through to get your app to hang? What versions of the AutomaticUpdater and wyUpdate are you using?

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

Private Sub frmAppmain_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Try mnuUpdates.Enabled = True mnuCheckForUpdates.Enabled = True mnuUpdates.Focus() mnuCheckForUpdates.PerformClick()

Next Catch ex As Exception MessageBox.Show(ex.Message, "Message", MessageBoxButtons.OK, MessageBoxIcon.Information) End Try End Sub

Private Sub btnQuit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnQuit.Click Me.Dispose() End End Sub

is any thing needed in main form load or closing aborted

There's one big problem:

   Private Sub frmAppmain_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load        Try            mnuUpdates.Enabled = True            mnuCheckForUpdates.Enabled = True            mnuUpdates.Focus()            mnuCheckForUpdates.PerformClick()


        Next        Catch ex As Exception            MessageBox.Show(ex.Message, "Message", MessageBoxButtons.OK, MessageBoxIcon.Information)        End Try    End Sub

None of this is necessary and, quite frankly, causes lots of problems. The AutomaticUpdater is, by definition, automatic. You don't need to forcefully check for updates on startup. It does it already.

Remove that block of useless (and possibly harmful) code.

Ya i removed the useless code.

but the autoupdater doesn't start automatically..

I have some doubts..if any updates available in server then only auto update runs or it will check every time login and runs automaticallly?

how to check or make auto update to check for newer version to be downloaded..

could u tell it in clear

See the "DaysBetweenChecks" and "WaitBeforeCheckSecs" properties.

The AutomaticUpdater does not check on every start. Trust me, you don't want that. It does, however, check at an interval that you can specify using the 2 properties I just mentioned.