Unfortunatelly, I found in MSDN exact words "Do not use LoadLibrary to "run" a .EXE file."
There is no such remark in Win32.Hlp.
Means, I am not first, who wanted to use LoadLibrary by such way.
------------------
[This message has been edited by Semen Matusovski (edited March 11, 2000).]
Announcement
Collapse
No announcement yet.
LoadLibraryEx for EXE
Collapse
X
-
Michael --
Thanks for information.
If apps are controlled from both sides, situation is easy (and it possible to use, for example, MMF, like you mentioned).
If to speak about MS Word, theoretically it possible to use macroes.
But what to do, for example, with Notepad or WordPad ?
I am interesting to control any (not my) app.
------------------
Leave a comment:
-
Eric --
I want to "talk" with another Exe (for example, Word) through messages. Sometimes, it's necessary to send addresses of structures or to add additional subclass procedure.
With two processes this way is impossible....
BTW... the code for that article is public domain and available for download at the IMS web site (http://www.infoms.com). (Or for posting here, for that matter).
------------------
Michael Mattias
Racine WI USA
[email protected]
[This message has been edited by Michael Mattias (edited March 11, 2000).]
Leave a comment:
-
Eric --
I want to "talk" with another Exe (for example, Word) through messages.
Sometimes, it's necessary to send addresses of structures or to add additional subclass procedure.
With two processes this way is impossible.
Yes, I think to start another Exe in thread.
I tried "something", hinstance returns normal (points to MZ - beginning of any Exe), but what to do further ?
Which address I should call ?
GetProcAddress ..., "WinMain" returns 0.
[This message has been edited by Semen Matusovski (edited March 11, 2000).]
Leave a comment:
-
As I understand it, it is possible to run EXPORTed functions from a 32-bit EXE in that way, just as you would run them from a DLL file, but it is not a method of running an EXE, per se.
(Hmmm... I wonder what would happen if you started a thread and executed an EXE's WinMain function in that way...?)
-- Eric
------------------
Perfect Sync: Perfect Sync Development Tools
Email: mailto:[email protected][email protected]</A>
[This message has been edited by Eric Pearson (edited March 11, 2000).]
Leave a comment:
-
LoadLibraryEx for EXE
Hi, folks --
LoadLibraryEx "maps a specified executable module into the address space of the calling process. The executable module can be a .DLL or an .EXE file".
With DLL all is clear (GetProcAddr, Call Dword ...)
Does anybody knows, is it possible to start EXE by such way ?
If yes, how ?Tags: None
Leave a comment: