调用外部程序并传输参数(50分)

  • 主题发起人 主题发起人 wywzx
  • 开始时间 开始时间
W

wywzx

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样实现用
shellexecute(handle,'open',PChar('C:/Program Files/Internet Explorer/IEXPLORE.EXE'),nil,nil,sw_ShowNormal);
打开ie,
将想要传递的地址写到ie的地址栏里面
 
shellexecute(handle,'open',PChar('www.delphibbs.com'),nil,nil,sw_ShowNormal);
 
不行呀,pchar()里面是路径,如果是www.delphibbs.com没反应
 
你要实现什么???
 
不会吧, 我这里就可以, 他默认打开的就是IE, PCHAR(...)里就是网址。
 
shellexecute(handle,'open','C:/Program Files/Internet Explorer/IEXPLORE.EXE','www.delphibbs.com',nil,sw_show);
这样就可以了,www.delphibbs.com是网址。
 
shellexecute(handle,'open','C:/Program Files/Internet Explorer/IEXPLORE.EXE','www.delphibbs.com',nil,sw_show);
是对的
 
yongwang518, yeath, 是对的
thanks各位!
 
多人接受答案了。
 
后退
顶部