如何实现BUTTON按钮的ONCLICK事件点一下就可以打开IE窗口??? ( 积分: 50 )

  • 主题发起人 主题发起人 eagledark001
  • 开始时间 开始时间
E

eagledark001

Unregistered / Unconfirmed
GUEST, unregistred user!
如何实现BUTTON按钮的ONCLICK事件点一下就可以打开IE窗口???
 
如何实现BUTTON按钮的ONCLICK事件点一下就可以打开IE窗口???
 
外部调用IE
WinExec('IE的路径及文件名',SW_Normal)
 
procedure TForm1.Button2Click(Sender: TObject);
begin
WinExec('"C:/Program Files/Internet Explorer/IEXPLORE.EXE"', 5);
end;
 
Delphi帮助里的例子:
ShellExecute(handle, "explore", path_to_folder, NULL, NULL, SW_SHOWNORMAL);
 
如果仅仅打开ie就用上面两位的意见。如果直接打开某一个网址可用:
ShellExecute(Handle,'Open','http://www.163.com',NIL,NIL,SW_SHOW);
 
ShellExecute(handle, "iexplore",null, NULL, NULL, SW_SHOWNORMAL);
WinExec('"IEXPLORE"', 5);

Iexplore是Window注册过的文件,不需要指定路径
 
xiexie dajia
 
谢谢。顶一下
 

Similar threads

回复
0
查看
816
不得闲
回复
0
查看
989
不得闲
S
回复
0
查看
691
SUNSTONE的Delphi笔记
S
后退
顶部