VB-APP: Error popup windows

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • amalasi2008
    New Member
    • Jul 2008
    • 4

    VB-APP: Error popup windows

    Hi everyone!
    I want to prevent my app of any error popup windows, can I do that?
    Or can I restart my app if an error occurs?
  • amalasi2008
    New Member
    • Jul 2008
    • 4

    #2
    VB-APP: Error popup windows

    Hi everyone! I want to prevent my app of any error popup windows, can I do that? Or can I restart my app if an error occurs?

    Comment

    • r035198x
      MVP
      • Sep 2006
      • 13225

      #3
      What kind of application are you developing? Will Exception handling help?

      Comment

      • Curtis Rutland
        Recognized Expert Specialist
        • Apr 2008
        • 3264

        #4
        Don't double post!

        EDIT:
        Do not double post your questions. It makes it very hard for people to answer you especially if there are answers happening in all the threads you have started because they have to read 2 or more threads in order to see what has already been said. It also swamps the forum with your problem resulting in less attention for the other threads

        If you feel that your thread is going unnoticed, after a sufficient time (usually 24 hrs) you should reply to your own thread. This will "bump" it back to the top. No need too create identical threads. You can also edit your question if you need to make a change.

        Please read the Posting Guidelines

        I have merged your threads.

        MODERATOR

        Now, on to the help:
        Well, I suppose you could wrap all your code in try/catch statements, and do nothing with the exception...alt hough this would be poor programming. You should attempt to gracefully handle errors. Wherever you are doing something that might throw an error, use try/catches to catch the exception and handle it like you should.
        Last edited by Curtis Rutland; Jul 23 '08, 01:40 PM. Reason: added the MODERATOR part

        Comment

        Working...