Exiting a GUI

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cloh
    New Member
    • Jul 2007
    • 41

    #1

    Exiting a GUI

    Quick question, I have a GUI written in Access/VB that creates a series of MSExcel charts - I would like to know how to exit the running GUI once I see something wrong. Usually I just press Ctrl+Break when I am running a sub method from the VB Editor... I can't seem to do the same here. Ideas?
  • nico5038
    Recognized Expert Specialist
    • Nov 2006
    • 3080

    #2
    Hmm, strange. The CTRL-Break should stop the execution of the code, but when it's a query you're executing you're out of luck as the Jet-Engine can't be interrupted...

    Nic;o)

    Comment

    • missinglinq
      Recognized Expert Specialist
      • Nov 2006
      • 3533

      #3
      You might try inserting some DoEvents in between the running of each chart; this might allow Control - Break to function.

      Comment

      Working...