View Poll Results: How do u find this information...???

Voters
10. You may not vote on this poll
  • Helpful...

    7 70.00%
  • Not helpful...

    3 30.00%
Results 1 to 14 of 14

Thread: List of all VB error messages...

  1. #1

    Thread Starter
    ^:^...ANGEL...^:^ wrack's Avatar
    Join Date
    Mar 2002
    Location
    Melbourne, AUSTRALIA
    Posts
    2,695

    Thumbs up List of all VB error messages...

    Thought someone might like it...

    listing of all the VB error messages ( Application-defined or object-defined error )...

    VB Code:
    1. 0            
    2.  3            Return without GoSub
    3.  5            Invalid procedure call or argument
    4.  6            Overflow
    5.  7            Out of memory
    6.  9            Subscript out of range
    7.  10           This array is fixed or temporarily locked
    8.  11           Division by zero
    9.  13           Type mismatch
    10.  14           Out of string space
    11.  16           Expression too complex
    12.  17           Can't perform requested operation
    13.  18           User interrupt occurred
    14.  20           Resume without error
    15.  28           Out of stack space
    16.  35           Sub or Function not defined
    17.  47           Too many DLL application clients
    18.  48           Error in loading DLL
    19.  49           Bad DLL calling convention
    20.  51           Internal error
    21.  52           Bad file name or number
    22.  53           File not found
    23.  54           Bad file mode
    24.  55           File already open
    25.  57           Device I/O error
    26.  58           File already exists
    27.  59           Bad record length
    28.  61           Disk full
    29.  62           Input past end of file
    30.  63           Bad record number
    31.  67           Too many files
    32.  68           Device unavailable
    33.  70           Permission denied
    34.  71           Disk not ready
    35.  74           Can't rename with different drive
    36.  75           Path/File access error
    37.  76           Path not found
    38.  91           Object variable or With block variable not set
    39.  92           For loop not initialized
    40.  93           Invalid pattern string
    41.  94           Invalid use of Null
    42.  96           Unable to sink events of object because the object is already firing events to the maximum number of event receivers that it supports
    43.  97           Can not call friend function on object which is not an instance of defining class
    44.  98           A property or method call cannot include a reference to a private object, either as an argument or as a return value
    45.  321          Invalid file format
    46.  322          Can't create necessary temporary file
    47.  325          Invalid format in resource file
    48.  380          Invalid property value
    49.  381          Invalid property array index
    50.  382          Set not supported at runtime
    51.  383          Set not supported (read-only property)
    52.  385          Need property array index
    53.  387          Set not permitted
    54.  393          Get not supported at runtime
    55.  394          Get not supported (write-only property)
    56.  422          Property not found
    57.  423          Property or method not found
    58.  424          Object required
    59.  429          ActiveX component can't create object
    60.  430          Class does not support Automation or does not support expected interface
    61.  432          File name or class name not found during Automation operation
    62.  438          Object doesn't support this property or method
    63.  440          Automation error
    64.  442          Connection to type library or object library for remote process has been lost. Press OK for dialog to remove reference.
    65.  443          Automation object does not have a default value
    66.  445          Object doesn't support this action
    67.  446          Object doesn't support named arguments
    68.  447          Object doesn't support current locale setting
    69.  448          Named argument not found
    70.  449          Argument not optional
    71.  450          Wrong number of arguments or invalid property assignment
    72.  451          Property let procedure not defined and property get procedure did not return an object
    73.  452          Invalid ordinal
    74.  453          Specified DLL function not found
    75.  454          Code resource not found
    76.  455          Code resource lock error
    77.  457          This key is already associated with an element of this collection
    78.  458          Variable uses an Automation type not supported in Visual Basic
    79.  459          Object or class does not support the set of events
    80.  460          Invalid clipboard format
    81.  461          Method or data member not found
    82.  462          The remote server machine does not exist or is unavailable
    83.  463          Class not registered on local machine
    84.  481          Invalid picture
    85.  482          Printer error
    86.  735          Can't save file to TEMP
    87.  744          Search text not found
    88.  746          Replacements too long

  2. #2
    PowerPoster
    Join Date
    Aug 2002
    Location
    NY, NY
    Posts
    2,139
    Not that I want to dissapoint you, but this is not complete list by far. Many error messages are not documented.
    Roy

  3. #3
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    Hekpful yes, but not complete. Where did you find these?
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  4. #4
    Addicted Member glyptar's Avatar
    Join Date
    Sep 2002
    Location
    The Netherlands
    Posts
    138
    Glyptar

  5. #5

    Thread Starter
    ^:^...ANGEL...^:^ wrack's Avatar
    Join Date
    Mar 2002
    Location
    Melbourne, AUSTRALIA
    Posts
    2,695

    Re: Well

    Originally posted by James Stanich
    Hekpful yes, but not complete. Where did you find these?
    VB Code:
    1. Option Explicit
    2.  
    3. Private Sub Form_Load()
    4.     Dim i As Integer
    5.     For i = 0 To 32000
    6.         If Error$(i) <> "Application-defined or object-defined error" Then
    7.             Debug.Print i, Error$(i)
    8.         End If
    9.     Next i
    10. End Sub

  6. #6
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091
    Or just open VB, hit F1, and search for "Trappable errors"

    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  7. #7

    Thread Starter
    ^:^...ANGEL...^:^ wrack's Avatar
    Join Date
    Mar 2002
    Location
    Melbourne, AUSTRALIA
    Posts
    2,695
    Originally posted by crptcblade
    Or just open VB, hit F1, and search for "Trappable errors"
    pretty much same...

    But thanks bcos I never knew that MSDN has error list...

    Cheers...

  8. #8
    PowerPoster
    Join Date
    Aug 2002
    Location
    NY, NY
    Posts
    2,139
    crptcblade,
    this is way off the topic, but I'm just wondering if can shorten your signature to 2-3 lines. No offence, please.
    Roy

  9. #9

    Thread Starter
    ^:^...ANGEL...^:^ wrack's Avatar
    Join Date
    Mar 2002
    Location
    Melbourne, AUSTRALIA
    Posts
    2,695
    Originally posted by IROY55
    crptcblade,
    this is way off the topic, but I'm just wondering if can shorten your signature to 2-3 lines. No offence, please.
    Yeah right...It is way way off the topic...

  10. #10
    PowerPoster
    Join Date
    Aug 2002
    Location
    NY, NY
    Posts
    2,139
    So...? What's your point?
    Roy

  11. #11

    Thread Starter
    ^:^...ANGEL...^:^ wrack's Avatar
    Join Date
    Mar 2002
    Location
    Melbourne, AUSTRALIA
    Posts
    2,695
    Originally posted by IROY55
    So...? What's your point?
    Nothin'

    Don't want to get banned from the forum with off the topic discussion...

    Cheers...

  12. #12
    PowerPoster
    Join Date
    Aug 2002
    Location
    NY, NY
    Posts
    2,139
    Big deal ... This sign's are more waiste then an extra post by far.
    Roy

  13. #13
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344
    This lists the errors: (All, hopefully)

    VB Code:
    1. Option Explicit
    2.  Dim i As Integer
    3.  
    4. Private Sub Form_Load()
    5.  
    6.    For i = 0 To 32000
    7.         If Error$(i) <> "ERROR$" Then
    8.            List1.AddItem Error$(i)
    9.         End If
    10.     Next i
    11. End Sub
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  14. #14

    Thread Starter
    ^:^...ANGEL...^:^ wrack's Avatar
    Join Date
    Mar 2002
    Location
    Melbourne, AUSTRALIA
    Posts
    2,695

    Re: List of all VB error messages...

    Originally posted by wrack
    ( Application-defined or object-defined error )...

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