Click here to Skip to main content
15,921,279 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Problem in stretching an image Pin
John M. Drescher24-Oct-05 23:50
John M. Drescher24-Oct-05 23:50 
GeneralRe: Problem in stretching an image Pin
Arrun25-Oct-05 0:09
Arrun25-Oct-05 0:09 
QuestionLogritmic plot...help needeed Pin
Raza568024-Oct-05 22:44
Raza568024-Oct-05 22:44 
AnswerRe: Logritmic plot...help needeed Pin
Cedric Moonen24-Oct-05 22:57
Cedric Moonen24-Oct-05 22:57 
QuestionHow to make Memory MOdel Huge In Vc++ Pin
gsheladia24-Oct-05 21:51
gsheladia24-Oct-05 21:51 
AnswerRe: How to make Memory MOdel Huge In Vc++ Pin
khan++24-Oct-05 22:05
khan++24-Oct-05 22:05 
AnswerRe: How to make Memory MOdel Huge In Vc++ Pin
John M. Drescher24-Oct-05 22:36
John M. Drescher24-Oct-05 22:36 
AnswerRe: How to make Memory MOdel Huge In Vc++ Pin
BadKarma24-Oct-05 23:11
BadKarma24-Oct-05 23:11 
Hi,

How do you allocate the memory??

Like an array
double dblID[800000];

if this is the case the stack could be to small so you have to create it on the heap instead like this:
<code>double* pDblArray = new double[800000];
// you can still access it like an array
pDblArray[0] = 0.0;

// don't forget to free the memory
delete [] pDblArray;</code>

Hope this solves your problem

codito ergo sum
GeneralRe: How to make Memory MOdel Huge In Vc++ Pin
auur9-Nov-05 17:17
auur9-Nov-05 17:17 
QuestionChanging the colour of the edit box Pin
vikas amin24-Oct-05 21:05
vikas amin24-Oct-05 21:05 
AnswerRe: Changing the colour of the edit box Pin
Calc2024-Oct-05 21:16
Calc2024-Oct-05 21:16 
GeneralRe: Changing the colour of the edit box Pin
vikas amin24-Oct-05 22:42
vikas amin24-Oct-05 22:42 
GeneralRe: Changing the colour of the edit box Pin
vikas amin24-Oct-05 22:42
vikas amin24-Oct-05 22:42 
GeneralRe: Changing the colour of the edit box Pin
Calc2024-Oct-05 22:51
Calc2024-Oct-05 22:51 
AnswerRe: Changing the colour of the edit box Pin
FarPointer25-Oct-05 2:09
FarPointer25-Oct-05 2:09 
GeneralRe: Changing the colour of the edit box Pin
vikas amin25-Oct-05 4:23
vikas amin25-Oct-05 4:23 
GeneralRe: Changing the colour of the edit box Pin
toxcct25-Oct-05 5:34
toxcct25-Oct-05 5:34 
GeneralRe: Changing the colour of the edit box Pin
Eytukan25-Oct-05 6:19
Eytukan25-Oct-05 6:19 
GeneralRe: Changing the colour of the edit box Pin
ThatsAlok25-Oct-05 19:19
ThatsAlok25-Oct-05 19:19 
Questionexit handler Pin
Chintoo72324-Oct-05 20:30
Chintoo72324-Oct-05 20:30 
AnswerRe: exit handler Pin
Christian Graus24-Oct-05 20:33
protectorChristian Graus24-Oct-05 20:33 
GeneralRe: exit handler Pin
Chintoo72324-Oct-05 20:40
Chintoo72324-Oct-05 20:40 
GeneralRe: exit handler Pin
khan++24-Oct-05 20:42
khan++24-Oct-05 20:42 
GeneralRe: exit handler Pin
vikas amin24-Oct-05 21:11
vikas amin24-Oct-05 21:11 
AnswerRe: exit handler Pin
Cedric Moonen24-Oct-05 21:45
Cedric Moonen24-Oct-05 21:45 

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.