Click here to Skip to main content
15,888,454 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: memory mapped Pin
Alexander M.,10-Mar-11 6:29
Alexander M.,10-Mar-11 6:29 
AnswerRe: memory mapped Pin
Niklas L10-Mar-11 20:48
Niklas L10-Mar-11 20:48 
GeneralRe: memory mapped Pin
sarfaraznawaz11-Mar-11 3:53
sarfaraznawaz11-Mar-11 3:53 
GeneralRe: memory mapped Pin
Niklas L13-Mar-11 23:35
Niklas L13-Mar-11 23:35 
GeneralRe: memory mapped Pin
sarfaraznawaz15-Mar-11 2:58
sarfaraznawaz15-Mar-11 2:58 
GeneralRe: memory mapped Pin
Niklas L15-Mar-11 3:03
Niklas L15-Mar-11 3:03 
GeneralRe: memory mapped Pin
sarfaraznawaz16-Mar-11 3:45
sarfaraznawaz16-Mar-11 3:45 
GeneralRe: memory mapped Pin
Niklas L16-Mar-11 4:10
Niklas L16-Mar-11 4:10 
Your DWORD is a 32 bit unsigned integer. That means it can store values up to 4 * 1024 * 1024 * 1024. You cannot point to anything higher than that in your file by just using one DWORD. This equals 4GByte. To be able to read data from a file larger than 4Gbyte, you will have to make use of the dwFileOffsetHigh, which simply speaking is the index of the 4Gbyte block in the file you want to read. For the first 4Gbyte, dwFileOffsetHigh should be zero, for the next 4Gbyte data, ranging from 4Gbyte to 8Gbyte, it should be 1, and so on. You have to do some simple math there to calculate the correct offset for your desired view.

GeneralRe: memory mapped Pin
sarfaraznawaz20-Mar-11 21:12
sarfaraznawaz20-Mar-11 21:12 
GeneralRe: memory mapped Pin
Niklas L20-Mar-11 23:12
Niklas L20-Mar-11 23:12 
GeneralRe: memory mapped Pin
sarfaraznawaz21-Mar-11 0:06
sarfaraznawaz21-Mar-11 0:06 
AnswerRe: memory mapped Pin
Niklas L21-Mar-11 2:06
Niklas L21-Mar-11 2:06 
QuestionHelp Microsoft Scripting Runtime Pin
goldenrose97-Mar-11 1:30
goldenrose97-Mar-11 1:30 
AnswerRe: Help Microsoft Scripting Runtime Pin
KingsGambit7-Mar-11 17:12
KingsGambit7-Mar-11 17:12 
Questionambiguous call to overloaded function.. but, it's not overloaded or ambiguous Pin
tukbriz7-Mar-11 0:49
tukbriz7-Mar-11 0:49 
AnswerRe: ambiguous call to overloaded function.. but, it's not overloaded or ambiguous Pin
Niklas L7-Mar-11 1:15
Niklas L7-Mar-11 1:15 
GeneralRe: ambiguous call to overloaded function.. but, it's not overloaded or ambiguous Pin
tukbriz8-Mar-11 3:13
tukbriz8-Mar-11 3:13 
AnswerRe: ambiguous call to overloaded function.. but, it's not overloaded or ambiguous Pin
Cool_Dev7-Mar-11 1:30
Cool_Dev7-Mar-11 1:30 
Questionchange highlight color of ClistCtrl when it not in focus Pin
xanagan6666-Mar-11 23:34
xanagan6666-Mar-11 23:34 
AnswerRe: change highlight color of ClistCtrl when it not in focus Pin
Roger Broomfield7-Mar-11 0:35
Roger Broomfield7-Mar-11 0:35 
GeneralRe: change highlight color of ClistCtrl when it not in focus Pin
xanagan6667-Mar-11 4:47
xanagan6667-Mar-11 4:47 
GeneralRe: change highlight color of ClistCtrl when it not in focus Pin
Roger Broomfield7-Mar-11 12:53
Roger Broomfield7-Mar-11 12:53 
QuestionHow can write sheet 2 in xlsx with excel automation? Pin
Le@rner6-Mar-11 18:29
Le@rner6-Mar-11 18:29 
AnswerRe: How can write sheet 2 in xlsx with excel automation? Pin
Roger Broomfield7-Mar-11 1:34
Roger Broomfield7-Mar-11 1:34 
GeneralRe: How can write sheet 2 in xlsx with excel automation? Pin
Le@rner7-Mar-11 1:57
Le@rner7-Mar-11 1: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.