Click here to Skip to main content
15,880,469 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: which module creates a specific file? Pin
Garth J Lancaster8-Sep-09 1:52
professionalGarth J Lancaster8-Sep-09 1:52 
GeneralRe: which module creates a specific file? Pin
Joseph Marzbani8-Sep-09 3:00
Joseph Marzbani8-Sep-09 3:00 
AnswerRe: which module creates a specific file? Pin
Selvam R8-Sep-09 2:02
professionalSelvam R8-Sep-09 2:02 
AnswerRe: which module creates a specific file? Pin
Stuart Dootson8-Sep-09 3:39
professionalStuart Dootson8-Sep-09 3:39 
AnswerRe: which module creates a specific file? Pin
kilt10-Sep-09 6:36
kilt10-Sep-09 6:36 
QuestionRe: which module creates a specific file? Pin
David Crow14-Sep-09 3:50
David Crow14-Sep-09 3:50 
QuestionVC++ pointers with Readfile function [modified] Pin
GC1048-Sep-09 1:19
GC1048-Sep-09 1:19 
AnswerRe: VC++ pointers with Readfile function Pin
«_Superman_»8-Sep-09 1:27
professional«_Superman_»8-Sep-09 1:27 
1 and 3 fails because you're passing a DWORD** instead of DWORD*.

The following should compile.
DWORD ActualBytesRead = 0;
BYTES ReceiverBuffer[1024];
DWORD NumberOfBytes2Read = 1024;

ReadFileStatus = ReadFile(SerialPortHandle, ReceiverBuffer, NumberOfBytes2Read, &ActualBytesRead, NULL);


«_Superman
I love work. It gives me something to do between weekends.

GeneralRe: VC++ pointers with Readfile function Pin
Cedric Moonen8-Sep-09 3:26
Cedric Moonen8-Sep-09 3:26 
AnswerRe: VC++ pointers with Readfile function Pin
David Crow8-Sep-09 3:05
David Crow8-Sep-09 3:05 
GeneralRe: VC++ pointers with Readfile function Pin
GC1048-Sep-09 4:48
GC1048-Sep-09 4:48 
GeneralRe: VC++ pointers with Readfile function Pin
David Crow8-Sep-09 4:56
David Crow8-Sep-09 4:56 
GeneralRe: VC++ pointers with Readfile function Pin
GC1048-Sep-09 5:06
GC1048-Sep-09 5:06 
QuestionGet current position of pointer using IStream interface Pin
MrKBA8-Sep-09 1:16
MrKBA8-Sep-09 1:16 
AnswerRe: Get current position of pointer using IStream interface Pin
Stuart Dootson8-Sep-09 3:43
professionalStuart Dootson8-Sep-09 3:43 
GeneralRe: Get current position of pointer using IStream interface Pin
MrKBA9-Sep-09 0:19
MrKBA9-Sep-09 0:19 
GeneralRe: Get current position of pointer using IStream interface Pin
Stuart Dootson9-Sep-09 3:20
professionalStuart Dootson9-Sep-09 3:20 
QuestionSome C++ Concepts Pin
hrishiS8-Sep-09 1:07
hrishiS8-Sep-09 1:07 
AnswerRe: Some C++ Concepts Pin
«_Superman_»8-Sep-09 1:12
professional«_Superman_»8-Sep-09 1:12 
GeneralRe: Some C++ Concepts Pin
hrishiS8-Sep-09 1:16
hrishiS8-Sep-09 1:16 
GeneralRe: Some C++ Concepts Pin
Cedric Moonen8-Sep-09 1:21
Cedric Moonen8-Sep-09 1:21 
GeneralRe: Some C++ Concepts Pin
hrishiS8-Sep-09 1:27
hrishiS8-Sep-09 1:27 
GeneralRe: Some C++ Concepts Pin
Cedric Moonen8-Sep-09 1:35
Cedric Moonen8-Sep-09 1:35 
GeneralRe: Some C++ Concepts Pin
N a v a n e e t h8-Sep-09 1:28
N a v a n e e t h8-Sep-09 1:28 
GeneralRe: Some C++ Concepts Pin
hrishiS8-Sep-09 1:31
hrishiS8-Sep-09 1:31 

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.