Search Result

Collapse
6 results in 0.0040 seconds.
Keywords
Members
Tags
catch
  •  

  • How to catch error 8511 (Records unable to paste inserted into table 'Paste Errors')?

    Hi all,

    I'm having difficulty catching error 8511, which states:
    "Records that Microsoft Office Access was unable to paste have been inserted into a new table called 'Paste Errors' In the Database window, open the new table to see the unpasted records. After you fix the problems that resulted in the paste errors, copy and paste the records from the new table."

    What generally happens is people copy data...
    See more | Go to post

  • danielo
    started a topic Why do i get uncaught exception and the program exits?
    in C

    Why do i get uncaught exception and the program exits?

    Code:
    class Error {
    Error(string err) { cout << err; }
    }
    void main()
    {
      try {
            throw string("exception");
     }
     catch(Error Err)
    {
    }
    return
    }
    my question is :
    why i get uncaught exception and the program exits ,
    even though i have a Error constructor that gets string ?
    thanks
    See more | Go to post

  • jenda
    started a topic How to catch a redraw event in axWebBrowser ?
    in .NET

    How to catch a redraw event in axWebBrowser ?

    Hey guys,

    I am using axWebBrowser control and I would like to catch an event when there is any kind of grafical change on the current page (for example: a gif image animation or a flash video running or just a simple underlining of a link when I move my mouse cursor over).

    I tried something like:
    Code:
    axWebBrowser1.Invalidated += new InvalidateEventHandler(axWebBrowser1_Invalidated);
    ...
    See more | Go to post

  • Jollywg
    started a topic Error Redirect
    in Java

    Error Redirect

    Is there a way to use a try catch statement in Java and when it catches an error call a method or tell it to go to a specific part of the program. If so how?

    Thanks in advance!
    See more | Go to post

  • BurnTard
    started a topic InputMismatchException not found?
    in Java

    InputMismatchException not found?

    Why on earth does the catch statement return an error? It's pretty much cut and paste from a java schoolbook! What the program does isn't all that important, without the try/catch, the code compiles fine... But as soon as the catch is introduced, I get an error saying "cannot find symbol," on line 23, the catch line.

    [CODE=java]
    import java.util.Scann er;

    public class O2a{

    public static...
    See more | Go to post

  • BurnTard
    started a topic Exception for incomparable types?
    in Java

    Exception for incomparable types?

    Okay, new programming language for Burnie. Can anyone tell me how to write a try catch statement for incomparable types? I can't figure out how to get emacs to give me the actual error, and not the very useful description... Basically I want this:

    [CODE=java]
    public class ThisProgram
    {
    public static void main (String[] args)
    {
    String[] list1={"a","b"} ;
    ...
    See more | Go to post
Working...