CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    Join Date
    Aug 2005
    Location
    San Diego, CA
    Posts
    1,054

    Funny error messages

    I received this while trying to load a web page today.

    "There was an error loading this trip. (Failed to lazily initialize a collection)"

    Evidently, the program couldn't even successfully be lazy! What's the funniest and/or weirdest error message you've ever received trying to load a web site?

  2. #2
    Join Date
    Feb 2002
    Posts
    4,640

    Re: Funny error messages

    Not a website, but trying to load a picture into Microsoft Image Viewer, I got an error message that said, "Image too large (too many bytes)"

    Is that what too large means! Too many bytes! Funny thing is it was only a 400k JPEG file.

    Viggy

  3. #3
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Funny error messages

    My all time favorite has to be: "An unexpected error has occurred."

    Wow, like I'm glad I didn't encounter an expected error.

  4. #4
    Join Date
    Nov 2003
    Location
    Belgium
    Posts
    8,150

    Re: Funny error messages

    "The following error has occured:
    No Error".
    Marc Gregoire - NuonSoft (http://www.nuonsoft.com)
    My Blog
    Wallpaper Cycler 3.5.0.97

    Author of Professional C++, 4th Edition by Wiley/Wrox (includes C++17 features)
    ISBN: 978-1-119-42130-6
    [ http://www.facebook.com/professionalcpp ]

  5. #5
    Join Date
    May 2005
    Location
    Estonia
    Posts
    235

    Re: Funny error messages

    No errors from me but look at these.
    The Windows Cement and Neanderthal Technology are very funny
    http://zoocow.com/jokes/funny-window...-messages/187/
    Rate my post if i it was useful!

  6. #6
    Join Date
    Apr 1999
    Location
    Altrincham, England
    Posts
    4,470

    Re: Funny error messages

    "The application failed to initialize because the workstation is shutting down."

    And I care, exactly, how?
    Correct is better than fast. Simple is better than complex. Clear is better than cute. Safe is better than insecure.
    --
    Sutter and Alexandrescu, C++ Coding Standards

    Programs must be written for people to read, and only incidentally for machines to execute.

    --
    Harold Abelson and Gerald Jay Sussman

    The cheapest, fastest and most reliable components of a computer system are those that aren't there.
    -- Gordon Bell


  7. #7
    Join Date
    Sep 2006
    Posts
    95

    Re: Funny error messages

    Not a real error message, but a client once called the helpdesk of the office I used to work at several years ago after having installed a new version of his custom software to fix some bugs.
    He said that the application was running fine except that it kept making mentions of all kinds of fruit and vegetables and different kinds of cheese, and he wondered why it wasn't any mentions of meat.
    The helpdesk employee who knew I had done the bugfix ran over to me and asked what the hell was going on, then I realized that I had forgotten to remove my debug messages, which I had put a lot of in there to test the code line by line without a proper step by step debugging tool.
    So I told him to tell the customer he'll get a more silent update soon, and that the reason there weren't any meat products mentioned was that our software was on a strictly vegetarian diet to avoid bugs. ( The 'theme' I had used to remember what debug messages were good and which ones were bad were that I had put Meat products in places where the program shouldn't be doing things while executing, and fruit and vegetables for the good parts. )
    On Error Kill(User)

  8. #8
    Join Date
    Dec 2003
    Location
    Northern Ireland
    Posts
    1,362

    Re: Funny error messages

    I really like this one (see BytePtr's link):
    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rich Cook


    0100 1101 0110 1001 0110 0011 0110 1000 0110 0001 0110 0101 0110 1100 0010 0000 0100 0101 0110 1100 0110 1100 0110 0101 0111 0010

  9. #9
    Join Date
    Jan 2008
    Posts
    19

    Re: Funny error messages

    How funny, I also get same message like Arjay

  10. #10
    Join Date
    Nov 2007
    Posts
    28

    Re: Funny error messages

    [coughing] That way I realized how people laughed at the message, this thread is an example.
    Hope I can find a female mouse to shoot her tail. Arggghh

  11. #11
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Funny error messages

    On one job that I had, doing Telecom, I had go to up to the Director's office to replace a speed dialer that was holding up the faxed press announcements. I went up there, and noticed that there were batteries in it.

    I asked if they had replaced the batteries, and they said no. Luckily I hadn't unplugged it from the power! They wanted to send back the new one, when I came back with a nine-volt.
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  12. #12
    Join Date
    May 2006
    Location
    Dresden, Germany
    Posts
    458

    Re: Funny error messages

    In ancient MS-DOS times a nice tool told me:
    User Error! Please replace user and try again!
    This is not only a good error message, it is a complete help system!

    (1) Error occured. (mhmhm)
    (2) Reason: Clearly stated: "User" error. No discussion needed.
    (3) And they told me in 6 words (incl. "please") how to prevent/fix the error (or to have a workaround at least).

    Cool!

  13. #13
    Join Date
    Sep 2004
    Location
    Holland (land of the dope)
    Posts
    4,123

    Re: Funny error messages

    "Warning, there is a warning coming"

  14. #14
    Join Date
    Mar 2002
    Location
    St. Petersburg, Florida, USA
    Posts
    12,125

    Re: Funny error messages

    Quote Originally Posted by KrisSimonis
    Not a real error message, but a client once called the helpdesk of the office I used to work at several years ago after having installed a new version of his custom software to fix some bugs.
    He said that the application was running fine except that it kept making mentions of all kinds of fruit and vegetables and different kinds of cheese, and he wondered why it wasn't any mentions of meat.
    The helpdesk employee who knew I had done the bugfix ran over to me and asked what the hell was going on, then I realized that I had forgotten to remove my debug messages, which I had put a lot of in there to test the code line by line without a proper step by step debugging tool.
    So I told him to tell the customer he'll get a more silent update soon, and that the reason there weren't any meat products mentioned was that our software was on a strictly vegetarian diet to avoid bugs. ( The 'theme' I had used to remember what debug messages were good and which ones were bad were that I had put Meat products in places where the program shouldn't be doing things while executing, and fruit and vegetables for the good parts. )
    This antedocte has been circulating for at least 17 years that I have been able to trace. It would be interesting to see how you support being the original author....
    TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
    2008, 2009,2010
    In theory, there is no difference between theory and practice; in practice there is.

    * Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
    * How NOT to post a question here
    * Of course you read this carefully before you posted
    * Need homework help? Read this first

  15. #15
    Join Date
    Mar 2002
    Location
    St. Petersburg, Florida, USA
    Posts
    12,125

    Re: Funny error messages

    Not an error message but a GREAT Quote... (paraphrased)

    I have always wished by computer was as easy to use as my telephone. My dream has finally come true. I not longer understand how to use my phone.
    A special bonus to the person who can name the person who made this quote (published earlier this year in a print magazine....)
    TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
    2008, 2009,2010
    In theory, there is no difference between theory and practice; in practice there is.

    * Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
    * How NOT to post a question here
    * Of course you read this carefully before you posted
    * Need homework help? Read this first

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured