Click here to Skip to main content
16,006,512 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Mac Address Pin
pk_fox23-Sep-04 3:37
pk_fox23-Sep-04 3:37 
QuestionHow to find all shared folders on the computers which are on LAN Pin
shri_3120-Sep-04 3:31
shri_3120-Sep-04 3:31 
AnswerRe: How to find all shared folders on the computers which are on LAN Pin
David Crow20-Sep-04 10:34
David Crow20-Sep-04 10:34 
GeneralRe: How to find all shared folders on the computers which are on LAN Pin
shri_3122-Sep-04 1:07
shri_3122-Sep-04 1:07 
GeneralRe: How to find all shared folders on the computers which are on LAN Pin
David Crow22-Sep-04 3:10
David Crow22-Sep-04 3:10 
GeneralCommunication between processes Pin
0v3rloader20-Sep-04 3:27
0v3rloader20-Sep-04 3:27 
GeneralRe: Communication between processes Pin
W00dSt0ck20-Sep-04 4:41
W00dSt0ck20-Sep-04 4:41 
GeneralRe: Communication between processes Pin
Blake Miller20-Sep-04 5:01
Blake Miller20-Sep-04 5:01 
Depends on what you are trying to do.
1. If all your processes are on the same machine, and you don't need a lot of data, or the data is of the same format every time, you can use memory mapped files.
2. You can use TCP/IP and sockets to send data back and forth, also works over the network.
3. If it is a TINY amount of infrequent data, with no return recipt required, you could look into MailSlots.
4. Hey, you can even use COM, but what a pain in the backside! (Marshaling data, getting hrreading mdoels and initialization to work right, DCOM settings, etc.)
5. You can use Local RPC (everything running on same computer) or Remote RPC (not necessarily on same computer).
6. WM_COPYDATA - sending data between windows of different processes.

Your question is impossible to answer appropriately without more details.
But you might want to read a little bit about each of the technologies mentioned here, and then you can make your own decision.

GeneralRe: Communication between processes Pin
0v3rloader20-Sep-04 6:48
0v3rloader20-Sep-04 6:48 
GeneralRe: Communication between processes Pin
Blake Miller20-Sep-04 7:16
Blake Miller20-Sep-04 7:16 
GeneralApplication Wizards for embedded Visual C++ 4 Pin
Jim Crafton20-Sep-04 3:15
Jim Crafton20-Sep-04 3:15 
GeneralRe: Application Wizards for embedded Visual C++ 4 Pin
Jim Crafton20-Sep-04 3:39
Jim Crafton20-Sep-04 3:39 
GeneralCapture screen with DirectX8 Pin
Dani7720-Sep-04 2:59
Dani7720-Sep-04 2:59 
GeneralTemplate Linker Errors... Pin
Milby00720-Sep-04 2:44
Milby00720-Sep-04 2:44 
GeneralRe: Template Linker Errors... Pin
Arsalan Malik20-Sep-04 2:49
Arsalan Malik20-Sep-04 2:49 
GeneralRe: Template Linker Errors... Pin
Milby00720-Sep-04 4:47
Milby00720-Sep-04 4:47 
GeneralRe: Template Linker Errors... Pin
Bob Stanneveld20-Sep-04 6:27
Bob Stanneveld20-Sep-04 6:27 
GeneralVirtual Keyboard Pin
racing5720-Sep-04 2:35
racing5720-Sep-04 2:35 
GeneralRe: Virtual Keyboard Pin
Blake Miller20-Sep-04 5:04
Blake Miller20-Sep-04 5:04 
GeneralRe: Virtual Keyboard Pin
racing5720-Sep-04 5:11
racing5720-Sep-04 5:11 
GeneralRe: Virtual Keyboard Pin
cwetze0115-Dec-04 15:55
cwetze0115-Dec-04 15:55 
GeneralEdit Box from funtion Pin
W00dSt0ck20-Sep-04 2:14
W00dSt0ck20-Sep-04 2:14 
GeneralRe: Edit Box from funtion Pin
Alpha Siera20-Sep-04 3:00
Alpha Siera20-Sep-04 3:00 
GeneralRe: Edit Box from funtion Pin
W00dSt0ck20-Sep-04 3:18
W00dSt0ck20-Sep-04 3:18 
GeneralRe: Edit Box from funtion Pin
Alpha Siera20-Sep-04 3:31
Alpha Siera20-Sep-04 3:31 

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.