Click here to Skip to main content
15,893,337 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Lining up the Decimal Points Pin
Malli_S4-Feb-14 21:58
Malli_S4-Feb-14 21:58 
GeneralRe: Lining up the Decimal Points Pin
BobInNJ5-Feb-14 3:24
BobInNJ5-Feb-14 3:24 
GeneralRe: Lining up the Decimal Points Pin
Malli_S5-Feb-14 21:12
Malli_S5-Feb-14 21:12 
QuestionRe: Lining up the Decimal Points Pin
David Crow5-Feb-14 6:18
David Crow5-Feb-14 6:18 
AnswerRe: Lining up the Decimal Points Pin
BobInNJ5-Feb-14 11:10
BobInNJ5-Feb-14 11:10 
SuggestionRe: Lining up the Decimal Points Pin
David Crow5-Feb-14 16:07
David Crow5-Feb-14 16:07 
GeneralRe: Lining up the Decimal Points Pin
BobInNJ6-Feb-14 2:10
BobInNJ6-Feb-14 2:10 
QuestionProper array memory management in C++ Pin
Don Guy3-Feb-14 12:43
Don Guy3-Feb-14 12:43 
I have an application that randomly displays images on a screen. There's a capture button, and when user clicks on that button, the image that is currently displayed is stored into a buffer.
User can click the button 5 times. i.e., the buffer should be storing upto 5 image data.

I have code like this,

.h File:

unsigned char* m_ImageBuffer[5];

.cpp File:

while (1)
{
----------
----------
m_ImageBuffer[counter] = new unsigned char[size];
memcpy(m_ImageBuffer[counter], pImageData, size);
----------
----------
}

The variable "counter" goes from 0 to 4. Inside the WHILE loop a bunch of images are constantly displayed
in the screen.

The purpose of m_ImageBuffer is that, i will store the user selected image data in this buffer, so that it could be later used for display. i.e., in a different screen.

The problem with the code in WHILE loop is that, i am not able to use DELETE properly. So the code logic basically ends up eating so much memory.

I am looking for a better logic, by which i can store the image data, but still does better memory management.

Not sure the problem is explained properly. I am expecting some suggestions on how to manage this situation.

Thanks in advance.
AnswerRe: Proper array memory management in C++ Pin
Richard MacCutchan3-Feb-14 21:42
mveRichard MacCutchan3-Feb-14 21:42 
AnswerRe: Proper array memory management in C++ Pin
Maximilien4-Feb-14 5:26
Maximilien4-Feb-14 5:26 
GeneralRe: Proper array memory management in C++ Pin
jschell6-Feb-14 8:34
jschell6-Feb-14 8:34 
AnswerRe: Proper array memory management in C++ Pin
Malli_S4-Feb-14 22:14
Malli_S4-Feb-14 22:14 
QuestionRelative path for #include directive - how to specify subdirectory on "down"level Pin
Vaclav_31-Jan-14 10:18
Vaclav_31-Jan-14 10:18 
AnswerRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Garth J Lancaster31-Jan-14 10:57
professionalGarth J Lancaster31-Jan-14 10:57 
AnswerRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
jeron131-Jan-14 11:00
jeron131-Jan-14 11:00 
GeneralRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Vaclav_31-Jan-14 11:09
Vaclav_31-Jan-14 11:09 
AnswerRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Richard Andrew x6431-Jan-14 11:25
professionalRichard Andrew x6431-Jan-14 11:25 
AnswerRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Richard MacCutchan31-Jan-14 22:13
mveRichard MacCutchan31-Jan-14 22:13 
GeneralRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Vaclav_1-Feb-14 16:14
Vaclav_1-Feb-14 16:14 
AnswerRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Randor 1-Feb-14 21:20
professional Randor 1-Feb-14 21:20 
GeneralRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Vaclav_2-Feb-14 3:50
Vaclav_2-Feb-14 3:50 
GeneralRe: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Richard MacCutchan1-Feb-14 21:24
mveRichard MacCutchan1-Feb-14 21:24 
GeneralSOLVED Re: Relative path for #include directive - how to specify subdirectory on "down"level Pin
Vaclav_3-Feb-14 4:14
Vaclav_3-Feb-14 4:14 
QuestionBuilding UI Automation in C++ for MFC applications?? Pin
Member 1031937631-Jan-14 2:24
Member 1031937631-Jan-14 2:24 
AnswerRe: Building UI Automation in C++ for MFC applications?? Pin
Richard MacCutchan31-Jan-14 2:51
mveRichard MacCutchan31-Jan-14 2:51 

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.