In Delphi I\'ve used ShellExecute for years to launch (and optionally wait for) other applications. Now though, I need to have one of these applications appear in one of my
var URL: string; begin URL:= DBMemoURL.Text; // ShellExecute(self.WindowHandle,'open', PChar(URL), nil, nil, SW_SHOW); //default browser ShellExecute(self.WindowHandle,'open','chrome.exe', PChar(URL), nil, SW_SHOW);