Home »» Delphi [Programming]
Thread Profile: Need procedure to run/call 'someprog.exe' .
Need procedure to run/call 'someprog.exe' .
I'm trying to find a windows API call to execute another windows
program from my DELPHI program. I want to replace all mi icons with
drop down lists, sorta like Windows 3.1 did it.
program from my DELPHI program. I want to replace all mi icons with
drop down lists, sorta like Windows 3.1 did it.
- 2Answer
- Total
at [2008-5-6 3:34:53]
Bill Drummond wrote:
I'm trying to find a windows API call to execute another windows
program from my DELPHI program. I want to replace all mi icons with
drop down lists, sorta like Windows 3.1 did it.
CreateProcess, ShellExecute, ShellExecuteEx
There are hundreds of examples for using those functions, but read the
documentation before you look at the examples.
Where did Windows 3.1 use drop-down lists where we use icons today?
- 1No.
- Answer
at [2008-5-6 3:35:53]
2/13/07, Bill Drummond <billdrum (AT) ev1 (DOT) netwrote:
I'm trying to find a windows API call to execute another windows
program from my DELPHI program.
ShellExecute:
CreateProcess:
-scroll down the page, this allows you to wait for the called
application to finish
HTH,
Markus
I'm trying to find a windows API call to execute another windows
program from my DELPHI program.
ShellExecute:
CreateProcess:
-scroll down the page, this allows you to wait for the called
application to finish
HTH,
Markus
- 2No.
- Answer