Registriert seit: 27. Sep 2003
203 Beiträge
Turbo Delphi für Win32
|
Re: shellexecute
14. Mär 2004, 22:07
hi,
dazu würde ich noch empfehlen statt
ShellExecute(Application.Handle, 'open', PChar(Edit1.text), PChar(Edit2.text), nil, nil, SW_ShowNormal);
das hier zu nehmen:
ShellExecute(Application.handle, nil, PChar(Edit1.Text), PChar(Edit2.Text), nil, nil, SW_ShowNormal);
mfg
|
|
Zitat
|