Registriert seit: 26. Mai 2004
3.159 Beiträge
|
AW: Chrome lässt sich nicht mit shellexecute starten
15. Feb 2011, 14:21
Bei mir geht das hier wunderbar:
Delphi-Quellcode:
uses ShellAPI;
procedure TForm2.Button1Click(Sender: TObject);var
ChromeFilename : String;
begin
ChromeFilename := 'C:\Users\<username>\AppData\Local\Google\Chrome\Application\chrome.exe';
Button1.Caption := IntToStr( ShellExecute(0, 'open', PChar(ChromeFilename), '', '', SW_SHOW) );
end;
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
|