Click to See Complete Forum and Search --> : API Registry Error Codes
mattbrown
Dec 8th, 1999, 04:46 PM
I need a list of error codes / constants that are returned by the registry API function calls.
E.G I have ERROR_SUCCESS = &0 for a successful command but I need a list of the actual errors
Thanks
Matt Brown
Senior Developer
Nova Solutions
hayessj
Dec 8th, 1999, 05:09 PM
These are what I use...
' Codes returned by Reg API calls
Private Const ERROR_NONE = 0
Private Const ERROR_BADDB = 1
Private Const ERROR_BADKEY = 2
Private Const ERROR_CANTOPEN = 3
Private Const ERROR_CANTREAD = 4
Private Const ERROR_CANTWRITE = 5
Private Const ERROR_OUTOFMEMORY = 6
Private Const ERROR_INVALID_PARAMETER = 7
Private Const ERROR_ACCESS_DENIED = 8
Private Const ERROR_INVALID_PARAMETERS = 87
Private Const ERROR_NO_MORE_ITEMS = 259
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.