Click here to Skip to main content
15,867,985 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Strange Font Problem in Edit Control Pin
ShilpiP1-Jun-11 21:30
ShilpiP1-Jun-11 21:30 
GeneralRe: Strange Font Problem in Edit Control Pin
vishalgpt1-Jun-11 22:04
vishalgpt1-Jun-11 22:04 
GeneralRe: Strange Font Problem in Edit Control Pin
ShilpiP1-Jun-11 22:46
ShilpiP1-Jun-11 22:46 
GeneralRe: Strange Font Problem in Edit Control Pin
vishalgpt1-Jun-11 23:33
vishalgpt1-Jun-11 23:33 
GeneralRe: Strange Font Problem in Edit Control Pin
ShilpiP2-Jun-11 0:29
ShilpiP2-Jun-11 0:29 
AnswerRe: Strange Font Problem in Edit Control Pin
Rajesh R Subramanian2-Jun-11 5:45
professionalRajesh R Subramanian2-Jun-11 5:45 
QuestionVirualAlloc and ReadFile Pin
csrss1-Jun-11 8:33
csrss1-Jun-11 8:33 
AnswerRe: VirualAlloc and ReadFile Pin
Rajesh R Subramanian1-Jun-11 8:52
professionalRajesh R Subramanian1-Jun-11 8:52 
csrss wrote:
VirtualAlloc(0,
BASE_BUFFER_SIZE, MEM_RESERVE, PAGE_READWRITE);

Just a hunch. The doc says that MEM_RESERVE flag Reserves a range of the process's virtual address space without allocating any actual physical storage in memory or in the paging file on disk.

If you're actually going to do something with the memory, MEM_COMMIT may be a good option (you could combine flags, like MEM_RESERVE | MEM_COMMIT). At least the doc[^] says so.

You also failed to tell what's "not working". I'm assuming that your ReadFile call failed, and GetLastError returns invalid access to memory location. Reading that, I'm assuming that since you're just reserving memory with your VirtualAlloc call, and not committing it before using, you're getting an invalid access error.
"Real men drive manual transmission" - Rajesh.

GeneralRe: VirualAlloc and ReadFile Pin
csrss1-Jun-11 9:10
csrss1-Jun-11 9:10 
GeneralRe: VirualAlloc and ReadFile Pin
Rajesh R Subramanian1-Jun-11 9:20
professionalRajesh R Subramanian1-Jun-11 9:20 
GeneralRe: VirualAlloc and ReadFile Pin
csrss1-Jun-11 9:50
csrss1-Jun-11 9:50 
GeneralRe: VirualAlloc and ReadFile Pin
Rajesh R Subramanian1-Jun-11 10:18
professionalRajesh R Subramanian1-Jun-11 10:18 
AnswerRe: VirualAlloc and ReadFile Pin
Rajesh R Subramanian1-Jun-11 9:24
professionalRajesh R Subramanian1-Jun-11 9:24 
GeneralRe: VirualAlloc and ReadFile Pin
csrss1-Jun-11 10:01
csrss1-Jun-11 10:01 
GeneralRe: VirualAlloc and ReadFile Pin
csrss1-Jun-11 10:08
csrss1-Jun-11 10:08 
GeneralRe: VirualAlloc and ReadFile Pin
Rajesh R Subramanian1-Jun-11 10:19
professionalRajesh R Subramanian1-Jun-11 10:19 
GeneralRe: VirualAlloc and ReadFile Pin
csrss1-Jun-11 11:11
csrss1-Jun-11 11:11 
QuestionRe: VirualAlloc and ReadFile Pin
David Crow1-Jun-11 10:10
David Crow1-Jun-11 10:10 
AnswerRe: VirualAlloc and ReadFile Pin
csrss1-Jun-11 11:12
csrss1-Jun-11 11:12 
Questionva_list not working form me and i dont know why Pin
kosacid1-Jun-11 5:19
kosacid1-Jun-11 5:19 
AnswerRe: va_list not working form me and i dont know why Pin
Luc Pattyn1-Jun-11 5:51
sitebuilderLuc Pattyn1-Jun-11 5:51 
GeneralRe: va_list not working form me and i dont know why Pin
kosacid1-Jun-11 6:02
kosacid1-Jun-11 6:02 
AnswerRe: va_list not working form me and i dont know why Pin
Luc Pattyn1-Jun-11 6:53
sitebuilderLuc Pattyn1-Jun-11 6:53 
GeneralOT Pin
CPallini1-Jun-11 8:14
mveCPallini1-Jun-11 8:14 
GeneralRe: OT Pin
Luc Pattyn1-Jun-11 13:59
sitebuilderLuc Pattyn1-Jun-11 13:59 

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.