Click here to Skip to main content
15,922,407 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Changing pixel color on a bitmap Pin
Ryan Binns13-Aug-03 5:05
Ryan Binns13-Aug-03 5:05 
GeneralRe: Changing pixel color on a bitmap Pin
vcplusplus13-Aug-03 6:40
vcplusplus13-Aug-03 6:40 
GeneralRe: Changing pixel color on a bitmap Pin
Ryan Binns14-Aug-03 0:09
Ryan Binns14-Aug-03 0:09 
GeneralRe: Changing pixel color on a bitmap Pin
vcplusplus14-Aug-03 2:37
vcplusplus14-Aug-03 2:37 
GeneralRe: Changing pixel color on a bitmap Pin
Ryan Binns14-Aug-03 3:10
Ryan Binns14-Aug-03 3:10 
GeneralUnresolved external symbol... Pin
Florin Ochiana13-Aug-03 3:35
Florin Ochiana13-Aug-03 3:35 
GeneralRe: Unresolved external symbol... Pin
Serge Krynine13-Aug-03 3:50
Serge Krynine13-Aug-03 3:50 
GeneralRe: Unresolved external symbol... Pin
Florin Ochiana13-Aug-03 4:29
Florin Ochiana13-Aug-03 4:29 
GeneralXcvData and adding a standard IP port Pin
Navin13-Aug-03 3:29
Navin13-Aug-03 3:29 
GeneralRe: XcvData and adding a standard IP port Pin
Navin13-Aug-03 5:34
Navin13-Aug-03 5:34 
GeneralI need to refer to the Microsoft’s non-conformance issues Pin
Anonymous13-Aug-03 3:22
Anonymous13-Aug-03 3:22 
GeneralRe: I need to refer to the Microsoft’s non-conformance issues Pin
Navin13-Aug-03 3:32
Navin13-Aug-03 3:32 
GeneralRe: I need to refer to the Microsoft’s non-conformance issues Pin
Serge Krynine13-Aug-03 3:46
Serge Krynine13-Aug-03 3:46 
GeneralRe: I need to refer to the Microsoft’s non-conformance issues Pin
Tim Smith13-Aug-03 3:50
Tim Smith13-Aug-03 3:50 
GeneralRe: I need to refer to the Microsoft’s non-conformance issues Pin
Serge Krynine13-Aug-03 3:54
Serge Krynine13-Aug-03 3:54 
Generalreading a text file Pin
VC++ Beginner13-Aug-03 2:28
VC++ Beginner13-Aug-03 2:28 
GeneralRe: reading a text file Pin
Anonymous13-Aug-03 2:52
Anonymous13-Aug-03 2:52 
GeneralRe: reading a text file Pin
Andrew Walker13-Aug-03 3:28
Andrew Walker13-Aug-03 3:28 
GeneralRe: reading a text file Pin
keegan13-Aug-03 3:34
keegan13-Aug-03 3:34 
GeneralRe: reading a text file Pin
David Crow13-Aug-03 5:36
David Crow13-Aug-03 5:36 
QuestionSendMessage??? Pin
_skidrow_vn_13-Aug-03 2:24
_skidrow_vn_13-Aug-03 2:24 
AnswerRe: SendMessage??? Pin
Florin Ochiana13-Aug-03 3:39
Florin Ochiana13-Aug-03 3:39 
GeneralRe: SendMessage??? Pin
jhwurmbach13-Aug-03 3:55
jhwurmbach13-Aug-03 3:55 
Florin Ochiana wrote:
SendMessage(999)

Eek! | :eek: Dead | X|
At least try something like
#define MAGIC_MESSAGE WM_APP+99
(or some other number)
ON_MESSAGE(MAGIC_MESSAGE,OnEndlabeledList)
...
SendMessage(MAGIC_MESSAGE);

MSDN states:
Message numbers in the first range (0 through WM_USER – 1) 
are defined by the system. Values in this range that are not explicitly 
defined are reserved for future use by the system. 
WM_USER is defined to be 0x400, so that your value of 0x3E7 (deimal 999) would send some message you did never intend to send to your window.



Who is 'General Failure'? And why is he reading my harddisk?!?
AnswerRe: SendMessage??? Pin
Navin13-Aug-03 3:44
Navin13-Aug-03 3:44 
Generalinitialization of code in CWinApp Pin
pdunn13-Aug-03 1:32
pdunn13-Aug-03 1:32 

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.