djfshady Member Joined Mar 19, 2011 Posts 68 Reacts 0 Reputation 0 Credits 0 Mar 16, 2011 #1 Here is how you open other programs from your delphi program. In the uses make sure you add ShellAPI. The folllowing lines opens up notepad Code: ShellExecute(Handle, 'Open', 'notepad', nil, nil, SW_SHOW); To open the broswer and to go to a specific page use the following line. Code: ShellExecute(Handle, 'Open', 'www.site.com', nil, nil, SW_SHOW);
Here is how you open other programs from your delphi program. In the uses make sure you add ShellAPI. The folllowing lines opens up notepad Code: ShellExecute(Handle, 'Open', 'notepad', nil, nil, SW_SHOW); To open the broswer and to go to a specific page use the following line. Code: ShellExecute(Handle, 'Open', 'www.site.com', nil, nil, SW_SHOW);