Click here to Skip to main content
15,923,374 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: code for changing 32bits color bmp image into 8bits color bmp image Pin
Chris Losinger10-Nov-07 7:15
professionalChris Losinger10-Nov-07 7:15 
GeneralRe: code for changing 32bits color bmp image into 8bits color bmp image Pin
Mark Salsbery7-Nov-07 7:13
Mark Salsbery7-Nov-07 7:13 
GeneralRe: code for changing 32bits color bmp image into 8bits color bmp image Pin
Chris Losinger7-Nov-07 7:42
professionalChris Losinger7-Nov-07 7:42 
GeneralRe: code for changing 32bits color bmp image into 8bits color bmp image Pin
Mark Salsbery7-Nov-07 7:46
Mark Salsbery7-Nov-07 7:46 
AnswerRe: code for changing 32bits color bmp image into 8bits color bmp image Pin
Nishad S7-Nov-07 3:04
Nishad S7-Nov-07 3:04 
GeneralRe: code for changing 32bits color bmp image into 8bits color bmp image Pin
King Tran7-Nov-07 3:44
King Tran7-Nov-07 3:44 
QuestionA problem Pin
minihotto7-Nov-07 1:50
minihotto7-Nov-07 1:50 
AnswerRe: A problem Pin
Nelek7-Nov-07 1:59
protectorNelek7-Nov-07 1:59 
Have you declared the pointer to your class before using it?
#include "MyClass.h"

MyClass* pMC;
pMC->DoSomething (...);


will work, but...
#include "MyClass.h"

pMC->DoSomething (...);


will give you the error you are posting

Greetings.

--------
M.D.V.

If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?

Help me to understand what I'm saying, and I'll explain it better to you

Wink | ;)

QuestionRe: A problem Pin
minihotto7-Nov-07 2:19
minihotto7-Nov-07 2:19 
AnswerRe: A problem Pin
Nelek7-Nov-07 2:55
protectorNelek7-Nov-07 2:55 
AnswerRe: A problem Pin
toxcct7-Nov-07 1:59
toxcct7-Nov-07 1:59 
QuestionVisual Studio 2005 SP2 & Debugging MFC DLL Pin
Andy H7-Nov-07 0:53
Andy H7-Nov-07 0:53 
AnswerRe: Visual Studio 2005 SP2 & Debugging MFC DLL Pin
KarstenK7-Nov-07 2:06
mveKarstenK7-Nov-07 2:06 
GeneralRe: Visual Studio 2005 SP2 & Debugging MFC DLL Pin
Andy H7-Nov-07 3:13
Andy H7-Nov-07 3:13 
GeneralRe: Visual Studio 2005 SP2 & Debugging MFC DLL Pin
Mark Salsbery7-Nov-07 7:18
Mark Salsbery7-Nov-07 7:18 
GeneralRe: Visual Studio 2005 SP2 & Debugging MFC DLL Pin
Andy H7-Nov-07 7:57
Andy H7-Nov-07 7:57 
QuestionConnect two click event together. Pin
CodingLover7-Nov-07 0:51
CodingLover7-Nov-07 0:51 
AnswerRe: Connect to click event together. Pin
Nelek7-Nov-07 0:55
protectorNelek7-Nov-07 0:55 
GeneralRe: Connect to click event together. Pin
CodingLover7-Nov-07 0:57
CodingLover7-Nov-07 0:57 
GeneralRe: Connect to click event together. Pin
chandu0047-Nov-07 1:19
chandu0047-Nov-07 1:19 
GeneralRe: Connect to click event together. Pin
CodingLover7-Nov-07 16:45
CodingLover7-Nov-07 16:45 
GeneralRe: Connect to click event together. Pin
chandu0048-Nov-07 1:43
chandu0048-Nov-07 1:43 
GeneralRe: Connect to click event together. Pin
Nelek7-Nov-07 1:52
protectorNelek7-Nov-07 1:52 
QuestionRe: Connect to click event together. Pin
CodingLover7-Nov-07 18:17
CodingLover7-Nov-07 18:17 
AnswerRe: Connect to click event together. Pin
Nelek7-Nov-07 21:11
protectorNelek7-Nov-07 21:11 

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.