用 Delphi 中的帖子打开默认浏览器
我知道在delphi中你可以使用以下方式打开默认浏览器:
ShellExecute(self.WindowHandle,'open','www.website.com',nil,nil, SW_SHOWNORMAL);
但我想知道是否有一种方法可以在新打开的浏览器窗口上自动发布数据或自动填充登录数据(即使在firefox、safari等中)
谢谢
-布拉德
I know in delphi you can open the default browser with:
ShellExecute(self.WindowHandle,'open','www.website.com',nil,nil, SW_SHOWNORMAL);
but I'm wanting to know if there is a way to automatically post data on the new opened brower window OR auto fill the login data (even in firefox, safari,etc)
Thanks
-Brad
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 OLE 启动浏览器,并使用
navigate
函数将数据和上下文传递到 URL。使用 OLE 打开 IE
发送数据 到 url
请参阅此处查看导航功能的示例:
http://forums.devshed.com/showpost.php?p=2408145& ;postcount=2
我希望这会有所帮助!
You can launch your browser with OLE, and use the
navigate
function to pass data and context to the url.Open IE with OLE
Send data to url
See here for an example of navigate function:
http://forums.devshed.com/showpost.php?p=2408145&postcount=2
I hope this will help !
您需要在网站名称前添加“http://”,否则操作系统不知道要打开什么应用程序。
ShellExecute(Application.Handle,'open','http://www.bjmsoftware.com',nil,零,SW_SHOWNORMAL);
在控制台应用程序中为我工作。
You need to add "Http://" before the name of the website, otherwise the OS doesn't know what application to open.
ShellExecute(Application.Handle,'open','http://www.bjmsoftware.com',nil,nil, SW_SHOWNORMAL);
works for me in a console application.
不可以,无法使用 url 发布数据或使用 ShellExecute 填写字段。没有通用的 API,所有浏览器都必须进行远程控制。替代方案是使用 GET(在 url 本身中编码)或直接与特定浏览器对话,例如 TridenT 建议。
No, it is not possible to POST data with the url or fill in fields using ShellExecute. There is no general API all browsers have to be remote controlled. Alternatives are using GET (encode in the url itself) or talking to specific browsers directly, like TridenT suggests.