Click here to Skip to main content
15,914,795 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: OnSizing ? Pin
Mark Salsbery10-Dec-06 19:36
Mark Salsbery10-Dec-06 19:36 
AnswerRe: OnSizing ? Pin
Puru Shukla10-Dec-06 19:43
Puru Shukla10-Dec-06 19:43 
GeneralRe: OnSizing ? Pin
Sakthiu10-Dec-06 19:51
Sakthiu10-Dec-06 19:51 
GeneralRe: OnSizing ? Pin
Michael Dunn10-Dec-06 20:15
sitebuilderMichael Dunn10-Dec-06 20:15 
GeneralRe: OnSizing ? Pin
Sam Hobbs10-Dec-06 23:53
Sam Hobbs10-Dec-06 23:53 
Questionhow to read the outlook express .dbx file. Pin
naveen padiyar10-Dec-06 18:40
naveen padiyar10-Dec-06 18:40 
QuestionRe: how to read the notepad file . [modified] Pin
Rajesh R Subramanian10-Dec-06 19:03
professionalRajesh R Subramanian10-Dec-06 19:03 
AnswerRe: how to read the notepad file . Pin
Puru Shukla10-Dec-06 19:56
Puru Shukla10-Dec-06 19:56 
You can use following WIN32 function to open file

HFILE OpenFile(
LPCSTR lpFileName,
LPOFSTRUCT lpReOpenBuff,
UINT uStyle
);

then again using following function you can read the file...

BOOL ReadFile(
HANDLE hFile,
LPVOID lpBuffer,
DWORD nNumberOfBytesToRead,
LPDWORD lpNumberOfBytesRead,
LPOVERLAPPED lpOverlapped
);


hFile
[in] A handle to the file to be read.

lpBuffer
[out] A pointer to the buffer that receives the data read from a file.

nNumberOfBytesToRead
[in] The maximum number of bytes to read.

lpNumberOfBytesRead
[out] A pointer to the variable that receives the number of bytes read.

If lpOverlapped is NULL, lpNumberOfBytesRead cannot be NULL.

If lpOverlapped is not NULL, lpNumberOfBytesRead can be NULL.

If this is an overlapped read operation, you can get the number of bytes read by calling "GetOverlappedResult".



raj shukla

GeneralRe: how to read the notepad file . Pin
Rajesh R Subramanian10-Dec-06 19:59
professionalRajesh R Subramanian10-Dec-06 19:59 
GeneralRe: how to read the deleted mail (.dbx file )from outlook express. Pin
naveen padiyar10-Dec-06 20:44
naveen padiyar10-Dec-06 20:44 
GeneralRe: how to read the deleted mail (.dbx file )from outlook express. Pin
Rajesh R Subramanian10-Dec-06 20:50
professionalRajesh R Subramanian10-Dec-06 20:50 
Questionconvert finction for 'unsigned char' to 'char *' Pin
With_problem10-Dec-06 17:42
With_problem10-Dec-06 17:42 
AnswerRe: convert finction for 'unsigned char' to 'char *' Pin
sunit510-Dec-06 17:46
sunit510-Dec-06 17:46 
GeneralRe: convert finction for 'unsigned char' to 'char *' Pin
With_problem10-Dec-06 17:52
With_problem10-Dec-06 17:52 
GeneralRe: convert finction for 'unsigned char' to 'char *' Pin
sunit510-Dec-06 18:02
sunit510-Dec-06 18:02 
GeneralRe: convert finction for 'unsigned char' to 'char *' Pin
With_problem10-Dec-06 18:30
With_problem10-Dec-06 18:30 
GeneralRe: convert finction for 'unsigned char' to 'char *' Pin
Nibu babu thomas10-Dec-06 18:07
Nibu babu thomas10-Dec-06 18:07 
GeneralRe: convert finction for 'unsigned char' to 'char *' Pin
David Crow11-Dec-06 4:09
David Crow11-Dec-06 4:09 
Questionhow to recover deleted msg from outlook express Pin
naveen padiyar10-Dec-06 17:37
naveen padiyar10-Dec-06 17:37 
Questionbitblt Cpu consumption Pin
Vissu8910-Dec-06 17:35
Vissu8910-Dec-06 17:35 
AnswerRe: bitblt Cpu consumption Pin
Mark Salsbery10-Dec-06 18:17
Mark Salsbery10-Dec-06 18:17 
GeneralRe: bitblt Cpu consumption Pin
Vissu8910-Dec-06 19:34
Vissu8910-Dec-06 19:34 
QuestionCreateProcess problem Pin
poda10-Dec-06 16:50
poda10-Dec-06 16:50 
AnswerRe: CreateProcess problem Pin
Michael Dunn10-Dec-06 17:08
sitebuilderMichael Dunn10-Dec-06 17:08 
GeneralRe: CreateProcess problem Pin
poda10-Dec-06 19:52
poda10-Dec-06 19:52 

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.