The 2 in the error code means "The system cannot find the file specified.".
I don't know the context in which that error was received so unless you are
awanda you should create your own thread and provide more information.
The format of Windows error codes are officially defined in Winerror.h; see:
http://msdn.microsoft.com/en-us/library/ms819772.aspx
Note that near the top of part 1 is:
//
// MessageId: ERROR_FILE_NOT_FOUND
//
// MessageText:
//
// The system cannot find the file specified.
//
#define ERROR_FILE_NOT_FOUND 2L
The "2L" is the code that is the right-most part of "0x80070002".
For a graphical format representation of the error codes, see "Interpreting
HRESULT Values" at:
http://msdn.microsoft.com/en-us/library/bb401631.aspx
"0x80070002)"" did not return results." <0x80070002)"" did not return
(e-mail address removed)> wrote in message
news:
[email protected]...