Search results for query: *

  1. C

    Shutdown Timer

    That seems to have made it work. Thank you for your assistance! This thread is resolved. Not sure how to mark it closed or answered....
  2. C

    Shutdown Timer

    I see what you are saying. I changed the code to Application.Exit() and will test that overnight. Thank you for your help. I will let you know how it goes!
  3. C

    Shutdown Timer

    That code is needed. It is an application that does many things and has 16 other forms that can be pulled up by the user. I am only trying to get it to exit between 9 and 10 am on Sunday morning. This code is for the user to exit the program by choice.
  4. C

    Shutdown Timer

    No the Form closing is very simple: Private Sub frmStart_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing Me.Dispose() End Sub
  5. C

    Shutdown Timer

    Sorry for my misquote. Yes, I want the Application to Exit. I have a Me.Close(). The problem seems to be that it won't actually close like a want it to close. Not sure why.
  6. C

    Shutdown Timer

    I just want the application to shut down.
  7. C

    Shutdown Timer

    I have an application that is supposed to shut itself down on Sunday between 9 and 10 am. It does not seem to work. If I run the program and sit and watch it, it will shut down as it is expected. This application runs across a network and there may be 100 instances of it open at any one time...
Back
Top