Click here to Skip to main content
15,885,947 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
QuestionSilent Crash On 2K - Debug Suggestions? Pin
Paul Belikian6-Sep-05 16:56
Paul Belikian6-Sep-05 16:56 
Answer[Msg Deleted] Pin
Christian Graus6-Sep-05 17:10
protectorChristian Graus6-Sep-05 17:10 
AnswerRe: Silent Crash On 2K - Debug Suggestions? Pin
Christian Graus6-Sep-05 17:10
protectorChristian Graus6-Sep-05 17:10 
GeneralRe: Silent Crash On 2K - Debug Suggestions? Pin
Paul Belikian6-Sep-05 18:58
Paul Belikian6-Sep-05 18:58 
GeneralRe: Silent Crash On 2K - Debug Suggestions? Pin
Christian Graus6-Sep-05 19:15
protectorChristian Graus6-Sep-05 19:15 
AnswerRe: Silent Crash On 2K - Debug Suggestions? Pin
Blake Miller7-Sep-05 9:49
Blake Miller7-Sep-05 9:49 
QuestionDisplay Unicode string in Win32 Console Pin
Le Tuan Anh6-Sep-05 16:49
Le Tuan Anh6-Sep-05 16:49 
Questionhow read another process of variable? Pin
00000000096-Sep-05 15:36
00000000096-Sep-05 15:36 
QuestionSend message Pin
Member 21610046-Sep-05 15:34
Member 21610046-Sep-05 15:34 
AnswerRe: Send message Pin
Christian Graus6-Sep-05 15:51
protectorChristian Graus6-Sep-05 15:51 
Questionusing GDI+ in C++ windows project Pin
mpastchenko6-Sep-05 13:51
mpastchenko6-Sep-05 13:51 
AnswerRe: using GDI+ in C++ windows project Pin
Christian Graus6-Sep-05 14:55
protectorChristian Graus6-Sep-05 14:55 
GeneralRe: using GDI+ in C++ windows project Pin
mpastchenko7-Sep-05 8:33
mpastchenko7-Sep-05 8:33 
GeneralRe: using GDI+ in C++ windows project Pin
mpastchenko7-Sep-05 9:10
mpastchenko7-Sep-05 9:10 
GeneralRe: using GDI+ in C++ windows project Pin
Christian Graus7-Sep-05 12:45
protectorChristian Graus7-Sep-05 12:45 

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.