Board index » delphi » NEED EMERGENCY HELP!!!
Kelton Averyt
![]() Delphi Developer |
Sat, 29 Apr 2000 03:00:00 GMT
|
Kelton Averyt
![]() Delphi Developer |
Sat, 29 Apr 2000 03:00:00 GMT
NEED EMERGENCY HELP!!!Have to Have App Out Today!!! Can someone email ShellExecute("C:\TEMP\APP.EXE"); and have the Thanks in Advance !!!! Kelton |
Leigh Harriso
![]() Delphi Developer |
Sun, 30 Apr 2000 03:00:00 GMT
Re:NEED EMERGENCY HELP!!!Quote> In article <3468B341.CD54B...@ix.netcom.com>, The following works. Change the bits you need to and paste it. Regards ... procedure TfMain.mToolsWinMixersClick(Sender: TObject); ? Leigh Harrison |
Bjorn-Kare Nilss
![]() Delphi Developer |
Sun, 30 Apr 2000 03:00:00 GMT
Re:NEED EMERGENCY HELP!!!In article <3468B341.CD54B...@ix.netcom.com>, QuoteKelton Averyt <ave...@ix.netcom.com> wrote: HINSTANCE ShellExecute( It does look a bit different from your code... -- |
Rodney E Geraght
![]() Delphi Developer |
Mon, 01 May 2000 03:00:00 GMT
Re:NEED EMERGENCY HELP!!! Take a look at the following. It uses the ExecuteFile() function that implementation {$R *.DFM} uses function ExecuteFile(const FileName, Params, DefaultDir: string; To use it do something like: procedure TForm1.Button1Click(Sender: TObject); This will fire up the the Notepad. Or: procedure TForm1.Button1Click(Sender: TObject); This will fire up the the Notepad and pass it the command line parameter Hope this helps! Rodney E Geraghty Bjorn-Kare Nilssen <bjoe...@sn.no> wrote in article Quote> In article <3468B341.CD54B...@ix.netcom.com>, - Hide quoted text - - Show quoted text - Quote> LPCTSTR lpDirectory, // pointer to string that specifies default |