stickleprojects Level: Moderator

 Registered: 09-09-2002 Posts: 891
|
Re: communicating between programs
Hi,
Yes, this is possible through a couple of technologies:
1. Sendkeys
This is one-way, but allows you to simulate keypresses on the target application
2. DDE
This is an older protocol for communication between apps - not used much now, but older apps support this and not OLE
3. OLE/COM
This is the newer and "preferred" method. You reference the target application and then send commands to it using COM. An example is "Word Automation using Com". Search MSDN.
All MSOffice versions support (3), and you can make apps that support it too.
Support topics to start you off are DLL and COM.
Hope this helps,
Kieron
____________________________
Build it better, faster, quicker, easier.. then fix it (non-offical MS mission statement)
|