Problem with SendMessage.
-
Hi all, How can i send a Message from One Class to Another Class using ::SendMessage(...) Api. I want to Send a Message. (i.e) In one.cpp file i want to Send a Message that message must Call Function in the Second.cpp file. how can i pass a String Value to the Second File(second.cpp) from First File(one.cpp). Please help me out.
Uday kiran
-
Hi all, How can i send a Message from One Class to Another Class using ::SendMessage(...) Api. I want to Send a Message. (i.e) In one.cpp file i want to Send a Message that message must Call Function in the Second.cpp file. how can i pass a String Value to the Second File(second.cpp) from First File(one.cpp). Please help me out.
Uday kiran
uday kiran janaswamy wrote:
How can i send a Message from One Class to Another Class using
Send message is not used to send messages between classes but to send a message to a specific window. If your class is not managing a window, then you cannot send a message to it.
Cédric Moonen Software developer
Charting control [v1.1] -
uday kiran janaswamy wrote:
How can i send a Message from One Class to Another Class using
Send message is not used to send messages between classes but to send a message to a specific window. If your class is not managing a window, then you cannot send a message to it.
Cédric Moonen Software developer
Charting control [v1.1]hi Cedric, Please let me know how to send a message from One Window to Another Window.
Uday kiran
-
hi Cedric, Please let me know how to send a message from One Window to Another Window.
Uday kiran
I think this[^] is what you are looking for.
Cédric Moonen Software developer
Charting control [v1.1] -
hi Cedric, Please let me know how to send a message from One Window to Another Window.
Uday kiran
uday kiran janaswamy wrote:
Please let me know how to send a message from One Window to Another Window.
IMHO please use WM_COPYDATA to String and othe complex data between two window .. example[^]
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta Global Interface Table: An Easy Way to Marshal an Interface Pointer[new] VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
hi Cedric, Please let me know how to send a message from One Window to Another Window.
Uday kiran
uday kiran janaswamy wrote:
Please let me know how to send a message from One Window to Another Window.
Use
SendMessage()
orPostMessage()
.
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
-
uday kiran janaswamy wrote:
Please let me know how to send a message from One Window to Another Window.
Use
SendMessage()
orPostMessage()
.
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
Dear David, Thank you very much.
Uday kiran