본문 바로가기
Delphi Tip/인터넷

웹 브라우져 URL주소 실행 ​

by MonoSoft 2023. 7. 6.
728x90
반응형

 

728x90

 

 

웹 브라우져 URL주소 실행 ​

 

첫번째 방법 ​

Windows API 함수 중 하나인 ShellExecute 함수를 이용합니다.

예제

uses ShellAPI; ​

 

procedure OpenWebPage(const URL: string);

begin

  ShellExecute(0, 'open', PChar(URL), nil, nil, SW_SHOWNORMAL);

end; ​

 

procedure TForm1.Button1Click(Sender: TObject);

begin

  OpenWebPage('사이트 주소')

end; ​

두번째 방법 ​

 

제가 예전에 프로그램에서 특정 url 로 이동할때 shellexecute 를 사용했을텐데요.

 

더 간단한 방법이 있습니다.

볼랜드 사이트서 본겁니다.

 

unit 에 UrlMon 을 추가

 

HlinkNavigateString(Nil,'사이트 주소');

728x90
반응형

댓글