DelphiでURLを指定してブラウザでHPを開く
ShellExecute
ShellExecuteを使ってブラウザを起動します。
ブラウザの起動
ShellExecute(Self.Handle, 'open', PChar('https://docs.google.com/spreadsheets/・・・・'),'', '', SW_SHOWNORMAL);
ShellExecute は、Windows API の関数です。
URLの文字列はPCharに入れます。
uses節
usesには、ShellAPIを追加します。