|
-
Nov 2nd, 2000, 04:16 PM
#1
Thread Starter
New Member
I need to be able to intercept any applications such as MS Word's call to Open or Save a file, and replace it with my own routine. Is this possible with VB and the API ?, anyone have any pointers ?
-
Nov 4th, 2000, 05:08 AM
#2
Frenzied Member
You would need to subclass their WM_COMMAND message. In order to subclass other windows you would need to put the WindowProc in A DLL file because processes can't access other processes memory area. A dll can be accesed by any process. The dll can't be made in VB. It can be made in c++.
-
Nov 5th, 2000, 04:35 AM
#3
Thread Starter
New Member
Are you saying that if the application uses a standard windows file dialogue I can trap it by subclassing the WM_COMMAND, but if not I would have to use c++. I am interested in what the limitation would be, as I am not a C++ programmer,
Thanks for your reply
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|