Click here to Skip to main content
15,886,864 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CFile Open failed GetLastError = 3 Pin
Richard MacCutchan16-May-12 7:55
mveRichard MacCutchan16-May-12 7:55 
QuestionHow to Define Horizontal profile ? c++ Pin
Pixel8615-May-12 16:35
Pixel8615-May-12 16:35 
AnswerRe: How to Define Horizontal profile ? c++ Pin
enhzflep15-May-12 20:08
enhzflep15-May-12 20:08 
Questionunreadable content written by fwrite() Pin
dilipkumarc15-May-12 5:46
dilipkumarc15-May-12 5:46 
AnswerRe: unreadable content written by fwrite() Pin
Richard MacCutchan15-May-12 6:29
mveRichard MacCutchan15-May-12 6:29 
AnswerRe: unreadable content written by fwrite() Pin
David Crow15-May-12 6:34
David Crow15-May-12 6:34 
AnswerRe: unreadable content written by fwrite() Pin
Andy41115-May-12 23:44
Andy41115-May-12 23:44 
QuestionUSB CreateFile() Access is denied Pin
__John_15-May-12 3:58
__John_15-May-12 3:58 
When trying to open a USB keyboard device I get "Access is denied".

VB
HANDLE hDevice = CreateFile (
        lpDevicePath,
        GENERIC_READ | GENERIC_WRITE,
        FILE_SHARE_READ | FILE_SHARE_WRITE,
        NULL,
        OPEN_EXISTING,
        FILE_FLAG_OVERLAPPED,
        NULL);


lpDevicePath is: \\?\root#rdp_kbd#0000#{884b96c3-56ef-11d1-bc8c-00a0c91405dd}

If I do not ask for any access, i.e...

VB
HANDLE hDevice = CreateFile (
        lpDevicePath,
        0,
        FILE_SHARE_READ | FILE_SHARE_WRITE,
        NULL,
        OPEN_EXISTING,
        FILE_FLAG_OVERLAPPED,
        NULL);


I get a valid handle but I get "Access is denied" when I use it to call WinUsb_Initialize().

Any ideas?

Thanks.
“If I had asked people what they wanted, they would have said faster horses.”
― Henry Ford

GeneralRe: USB CreateFile() Access is denied Pin
David Crow15-May-12 4:01
David Crow15-May-12 4:01 
GeneralRe: USB CreateFile() Access is denied Pin
__John_15-May-12 4:23
__John_15-May-12 4:23 
QuestionCreate BMP of 8bpp Pin
john563215-May-12 3:41
john563215-May-12 3:41 
AnswerRe: Create BMP of 8bpp Pin
Chris Losinger15-May-12 4:33
professionalChris Losinger15-May-12 4:33 
GeneralMessage Removed Pin
15-May-12 21:41
john563215-May-12 21:41 
GeneralRe: Create BMP of 8bpp Pin
enhzflep15-May-12 23:30
enhzflep15-May-12 23:30 
QuestionRead and Write a same file in FILE Pin
D.Manivelan15-May-12 2:29
D.Manivelan15-May-12 2:29 
AnswerRe: Read and Write a same file in FILE Pin
_Flaviu15-May-12 2:53
_Flaviu15-May-12 2:53 
AnswerRe: Read and Write a same file in FILE PinPopular
CPallini15-May-12 2:57
mveCPallini15-May-12 2:57 
AnswerRe: Read and Write a same file in FILE Pin
Richard MacCutchan15-May-12 2:59
mveRichard MacCutchan15-May-12 2:59 
AnswerRe: Read and Write a same file in FILE Pin
Aescleal15-May-12 4:38
Aescleal15-May-12 4:38 
QuestionIn C, how to read data from a file Pin
Baddy_Bad_Boy15-May-12 1:25
Baddy_Bad_Boy15-May-12 1:25 
AnswerRe: In C, how to read data from a file Pin
Richard MacCutchan15-May-12 1:30
mveRichard MacCutchan15-May-12 1:30 
QuestionMultiprocessor sort and search in C? Pin
Simon Langdon14-May-12 23:28
Simon Langdon14-May-12 23:28 
AnswerRe: Multiprocessor sort and search in C? Pin
David Crow15-May-12 3:47
David Crow15-May-12 3:47 
AnswerRe: Multiprocessor sort and search in C? Pin
TomasRiker217-May-12 8:11
TomasRiker217-May-12 8:11 
QuestionMFC help : code error 0000007B Pin
jawadali47714-May-12 21:57
jawadali47714-May-12 21:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.