Click here to Skip to main content
15,891,951 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Change Font of caption (title) of dialog box ?? Pin
Anonymous13-Sep-05 1:47
Anonymous13-Sep-05 1:47 
QuestionProper time to record Pin
LiYS6-Sep-05 20:20
LiYS6-Sep-05 20:20 
AnswerRe: Proper time to record Pin
David Crow7-Sep-05 3:22
David Crow7-Sep-05 3:22 
QuestionProblem related to CImageList(explanation) Pin
a_david1236-Sep-05 20:18
a_david1236-Sep-05 20:18 
QuestionHow does CListCtrl notify its parent window when a cell content has changed? Pin
followait6-Sep-05 20:18
followait6-Sep-05 20:18 
AnswerRe: How does CListCtrl notify its parent window when a cell content has changed? Pin
Ian Bowler7-Sep-05 13:39
Ian Bowler7-Sep-05 13:39 
GeneralRe: How does CListCtrl notify its parent window when a cell content has changed? Pin
followait7-Sep-05 16:15
followait7-Sep-05 16:15 
AnswerRe: How does CListCtrl notify its parent window when a cell content has changed? Pin
David Crow8-Sep-05 2:34
David Crow8-Sep-05 2:34 
QuestionSEARCH PATTERN Pin
russel.ak6-Sep-05 19:58
russel.ak6-Sep-05 19:58 
AnswerRe: SEARCH PATTERN Pin
kakan6-Sep-05 21:25
professionalkakan6-Sep-05 21:25 
QuestionCross app SendMessage Pin
ayon1116-Sep-05 19:56
ayon1116-Sep-05 19:56 
QuestionHow to make a combobox to be flat? Pin
followait6-Sep-05 19:29
followait6-Sep-05 19:29 
AnswerRe: How to make a combobox to be flat? Pin
David Crow7-Sep-05 3:31
David Crow7-Sep-05 3:31 
Generalyes Pin
followait7-Sep-05 16:06
followait7-Sep-05 16:06 
GeneralRe: yes Pin
David Crow8-Sep-05 2:33
David Crow8-Sep-05 2:33 
QuestionHow the watch the url in IE? Pin
redduke6-Sep-05 18:32
redduke6-Sep-05 18:32 
AnswerRe: How the watch the url in IE? Pin
ThatsAlok6-Sep-05 18:52
ThatsAlok6-Sep-05 18:52 
Questiondata communication between applications Pin
Nishad S6-Sep-05 18:15
Nishad S6-Sep-05 18:15 
AnswerRe: data communication between applications Pin
Christian Graus6-Sep-05 18:44
protectorChristian Graus6-Sep-05 18:44 
GeneralRe: data communication between applications Pin
Nishad S6-Sep-05 18:51
Nishad S6-Sep-05 18:51 
AnswerRe: data communication between applications Pin
ThatsAlok6-Sep-05 18:54
ThatsAlok6-Sep-05 18:54 
GeneralRe: data communication between applications Pin
Christian Graus6-Sep-05 19:04
protectorChristian Graus6-Sep-05 19:04 
AnswerRe: data communication between applications Pin
cmk7-Sep-05 2:32
cmk7-Sep-05 2:32 
In general, you can not pass pointers between applications.

Each process has its own address space, the operating system maps the process specific address to a physical memory address. So process A address 0x00123456 may map to physical address 0x11111111, and process B address 0x00123456 may map to physical address 0x22222222. Don't even think about trying to get/pass physical address'.

You must pass the data.
As Christian said you can use WM_COPYDATA.
There are a number of other ways as well e.g. pipes, memory mapped files, ...


...cmk

Save the whales - collect the whole set
GeneralRe: data communication between applications Pin
Nishad S7-Sep-05 18:06
Nishad S7-Sep-05 18:06 
GeneralRe: data communication between applications Pin
cmk8-Sep-05 4:18
cmk8-Sep-05 4:18 

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.