• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    *Expert Elite*
    Hallex
    Posts: 1,334
    Registered: ‎10-08-2008

    Re: Fatal Exception when running code

    05-25-2012 10:56 AM in reply to: bkenyon13

    Good point

    Thanks for the sharing with community

    Cheers :smileyhappy:

     

    ~'J'~

    _____________________________________
    C6309D9E0751D165D0934D0621DFF27919
    Please use plain text.
    New Member
    Posts: 1
    Registered: ‎01-14-2010

    Re: Fatal Exception when running code

    05-26-2012 02:40 AM in reply to: bkenyon13

    Hi,

     

    does not the "Exit for" without any condition cause the code to leave the loop inside the first round? Maybe you are not going to reach your problem anymore......

     

    Christian Blei

    Please use plain text.
    Active Contributor
    Posts: 45
    Registered: ‎04-20-2012

    Re: Fatal Exception when running code

    05-26-2012 08:14 AM in reply to: ChristianBlei7416

    what I found was while this solved the fatal error it stopped copying the pagesetups.

    So I did some troubleshooting and realized the the curps.dispose was the issue with it not copying the pagesetup

     

    however I also discovered that if I removed the exit for and/or the curps.dispose I would get the fatal error again.

    so in order for my code to work and copy the pagesetups without giving me the fatal error I had to stop/unload the curps without using curps.dispose and exit for.

     

    so a long story somewhat short I did this:

    using curps as plotsettings = new plotsettings(false)

    (did work)

    end using

     

    This allowed me to copy the pagesetups as I wanted and not get a fatal error in the resulting code I removed all exit for's.  What I learned from this is that you have to make sure that everything gets unloaded even the littlest thing still hanging out there can cause an error.

     

    Hope this helps.

    Please use plain text.