How can I open a specific URL with any Web Browser installed ?
Sometimes, it is difficult to determine which Internet Browser is installed in the clients' PC.
Therefore a simple method to open a specific URL is required. Don't forget add ShellAPI in USES clause !
if ShellExecute( Application.MainForm.Handle, nil, PChar( 'http://www.hianoto.net' ),
PChar( '' ), PChar( '' ), SW_SHOWNORMAL ) <= 32 then
MessageDlg( 'Error in web browser', mtError, [ mbOk ], 0 );