Click here to Skip to main content
15,913,486 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: convert string to ascii in vc++ Pin
nehathoma18-Mar-05 0:22
nehathoma18-Mar-05 0:22 
GeneralRe: convert string to ascii in vc++ Pin
Bob Stanneveld18-Mar-05 0:26
Bob Stanneveld18-Mar-05 0:26 
GeneralRe: convert string to ascii in vc++ Pin
nehathoma18-Mar-05 0:31
nehathoma18-Mar-05 0:31 
GeneralRe: convert string to ascii in vc++ Pin
Bob Stanneveld18-Mar-05 1:05
Bob Stanneveld18-Mar-05 1:05 
GeneralRe: convert string to ascii in vc++ Pin
ThatsAlok18-Mar-05 0:31
ThatsAlok18-Mar-05 0:31 
GeneralRe: convert string to ascii in vc++ Pin
nehathoma18-Mar-05 0:40
nehathoma18-Mar-05 0:40 
GeneralRe: convert string to ascii in vc++ Pin
ThatsAlok18-Mar-05 0:50
ThatsAlok18-Mar-05 0:50 
GeneralRe: convert string to ascii in vc++ Pin
nehathoma18-Mar-05 0:55
nehathoma18-Mar-05 0:55 
GeneralRe: convert string to ascii in vc++ Pin
ThatsAlok18-Mar-05 1:05
ThatsAlok18-Mar-05 1:05 
GeneralRe: convert string to ascii in vc++ Pin
nehathoma18-Mar-05 1:10
nehathoma18-Mar-05 1:10 
GeneralRe: convert string to ascii in vc++ Pin
ThatsAlok18-Mar-05 2:22
ThatsAlok18-Mar-05 2:22 
GeneralRe: convert string to ascii in vc++ Pin
nehathoma18-Mar-05 16:56
nehathoma18-Mar-05 16:56 
QuestionPowerpoint Automation: VB a lot faster than C++ ?? Pin
User 172888417-Mar-05 22:53
User 172888417-Mar-05 22:53 
GeneralFindFirstUrlCacheEntry problem Pin
Spiritofamerica17-Mar-05 22:45
Spiritofamerica17-Mar-05 22:45 
GeneralRe: FindFirstUrlCacheEntry problem Pin
Michael Dunn18-Mar-05 8:22
sitebuilderMichael Dunn18-Mar-05 8:22 
GeneralRe: FindFirstUrlCacheEntry problem Pin
Mike Dimmick18-Mar-05 8:49
Mike Dimmick18-Mar-05 8:49 
GeneralRe: FindFirstUrlCacheEntry problem Pin
Spiritofamerica18-Mar-05 10:18
Spiritofamerica18-Mar-05 10:18 
GeneralRe: FindFirstUrlCacheEntry problem Pin
Spiritofamerica9-May-05 12:26
Spiritofamerica9-May-05 12:26 
Questionhow to post a custom message in mfc Pin
Anonymous17-Mar-05 22:41
Anonymous17-Mar-05 22:41 
AnswerRe: how to post a custom message in mfc Pin
bouli18-Mar-05 1:59
bouli18-Mar-05 1:59 
GeneralRe: how to post a custom message in mfc Pin
Ravi Bhavnani18-Mar-05 3:05
professionalRavi Bhavnani18-Mar-05 3:05 
GeneralRe: how to post a custom message in mfc Pin
John R. Shaw18-Mar-05 7:44
John R. Shaw18-Mar-05 7:44 
That caught me offgard, I have not looked up WM_USER since the 3.1 days.

WM_USER: Used by private window classes. (it's not obsolete)
WM_APP: Used by applications. (non-class specific)

If you want to define messages that can be meaningful for all classes in your application, then you need to use WM_APP. In this case you should NOT difine two messages with the same value.

If you use WM_APP to difine user specific private window class messages, then you run the risk of clashing with user specific application defined messages.

The creator of the private windows class and the creator of the main application may not be the same person.

Private widows class messages and application wide messages are two different things.

So, do not believe everything you read. Be carefull!

INTP
"The more help VB provides VB programmers, the more miserable your life as a C++ programmer becomes."
Andrew W. Troelsen
GeneralRe: how to post a custom message in mfc Pin
Blake Miller18-Mar-05 11:50
Blake Miller18-Mar-05 11:50 
QuestionHow to make a button invisible dynamically Pin
caykahve17-Mar-05 22:25
caykahve17-Mar-05 22:25 
AnswerRe: How to make a button invisible dynamically Pin
Mike Dimmick17-Mar-05 22:33
Mike Dimmick17-Mar-05 22:33 

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.