Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
357 views

What causes CreateDirectory to return ERROR_ACCESS_DENIED?

In another question, we established that yes, CreateDirectory occasionally fails with the undocumented GetLastError value of ERROR_ACCESS_DENIED, and that the right way to handle the situation is ...
2
votes
1answer
408 views

CreateFile() returns INVALID_HANDLE_VALUE but GetLastError() is ERROR_SUCCESS

I am opening a serial port using CreateFile(). I've got a testcase (too complicated to redistribute) that consistently causes CreateFile() to return INVALID_HANDLE_VALUE and GetLastError() to return ...
2
votes
2answers
569 views

ReadFile() says it failed, but the error code is ERROR_SUCCESS

I'm using ReadFile() on Windows to read data from a serial port. This code was working fine at one point in time, but it's now failing and I'm trying to track down the source of the problem, so I ...
2
votes
1answer
341 views

Similar function to GetLastError in objective-C/C?

I'm doing some lovely socket programming in objective-C right now and part of my code is giving me an error (in the setsockopt method call). I was wondering if anyone knows of a similar function to ...
2
votes
5answers
927 views

Best way to pass last error to custom error redirect?

Was wondering what you thought of this solution, if this is right way to pass an error message to a custom page? In web.config: <customErrors mode="On" ...
1
vote
2answers
97 views

Strange GetLastError return in Managed C++

I have a really strange problem with GetLastError and managed C++. GetLastError is returning something very strange after transitioning from unmanaged code to managed code. The error code: 122 - The ...
1
vote
1answer
290 views

wglShareLists fails with error 6 : ERROR_INVALID_HANDLE The handle is invalid

I try to share a HPBUFFERARB between two classes : TGLForm and TGLForm2. (I tried FBO but having an old Borland Builder 6 version I can't manage using FBO) My goal is to display the same buffer in ...
1
vote
1answer
232 views

when CreateDirectory returns ERROR_ACCESS_DENIED and “shouldn't”

My Win32 app A1 (actually a collection of processes) is trying to use CreateDirectory to create a directory D1 within parent directory P. The path to P is the value of the TMP environment variable, ...
1
vote
2answers
171 views

Combining the value of GetLastError and a custom error message

I have a function that returns a different DWORD value for each case there is an error. So I have the following defines: #define ERR_NO_DB_CONNECTION 0x90000 #define ERR_DB_NOT_OPEN ...
0
votes
2answers
130 views

GetThreadContext returning error 6, Invalid Handle?

#include <iostream> #include <Windows.h> using std::cout; using std::endl; using std::cin; int main() { cout << "1." << GetLastError() << endl; ...
0
votes
1answer
98 views

GetLastError called in a catch block yields incorrect value

Fun exploring some legacy code today. Ran into this little number: function Func1() { DWORD dwError; try { dwError = 1; throw "Hey!"; } catch (LPCTSTR szError) { Log("Log1: %d", dwError); ...
0
votes
3answers
166 views

EnumProcessModulesEx fails returning error code 299 (ERROR_PARTIAL_COPY)

I am calling the function EnumProcessModulesEx and it fails. I running on a 64-bit machine. Here is the code below: wchar_t* dest = new wchar_t[100]; int index = SendMessage(processes, LB_GETCURSEL, ...
0
votes
0answers
24 views

apr_get_os_error returns 720005

I'm trying to write data to a file using APR (Apache Portable Runtime), I open fine with the APR_FOPEN_READ and APR_FOPEN_WRITE flags. However, when I try to write to the file (using apr_file_write, I ...
0
votes
1answer
27 views

Exaustive lists of all possible errors for various Windows API calls?

CreateFile for example. When I get INVALID_HANDLE_VALUE, what are all the possible values that can be returned by GetLastError? MSDN doesn't say. It mentions some and I can guess others, but how (if ...
0
votes
2answers
503 views

GetQueuedCompletionStatus returns ERROR_NETNAME_DELETED on remote socket closure

I am writing a small server-client-stuff using an I/O-Completion Port. I get the server and client connected successfully via AcceptEx over my completion port. After the client has connected the ...
0
votes
1answer
457 views

OpenProcess error 87 invalid parameter

I'm trying to write a program which executes make.exe from MinGW distribution in the current directory and makes use of its STDOUT data and exit code. I have a handle to process STDOUT where I fetch ...
0
votes
1answer
386 views

Errorcode in MySQL procedure

We have been facing a small problem in MySQL procedure. We have placed some exception handlers inside the procedure. But we want to retrieve the errorcode of any error that can occur inside a ...
0
votes
2answers
370 views

Getting Access Denied While Accessing the Named Pipe from Another System

I have a Named Pipe and It Works Fine While I access it using a Client which runs on My System The Client tries to open the File using following code: LPTSTR lpszPipename = ...
0
votes
2answers
200 views

insufficient buffer when call DocumentProperties, also, global unlock wouldn't unlock

please see comments inline bool res = false; DWORD dwNeeded = DocumentPropertiesW(NULL, m_currPrinterHandle, (LPWSTR) m_currPrinterName.c_str(), NULL, NULL, 0); if (m_devmode_buf) { ...
0
votes
3answers
635 views

Problem with GetLastError API on windows 7

I have one application that interacts with the server. If the server is down then then I will get ERROR_WINHTTP_CANNOT_CONNECT I am using getLastError() API to get this error code, I am handling this ...
0
votes
1answer
290 views

What does ERROR_FILE_NOT_FOUND mean from SendMessage?

SendMessage returning 0 and GetLastError returning 2 (ERROR_FILE_NOT_FOUND). ERROR_ACCESS_DENIED is documented but not this. Anyone have any idea what this means?