如何在InstallShield中单击按钮打开网页?
您好,
我想通过单击 InstallShield 中创建的任何对话框中的按钮来打开网页。我认为它可以通过使用自定义操作来创建,但由于我是这个工具的新手,没有找到实现此目的的确切方法。如果有人对此有想法,请帮忙。
谢谢。
HI,
I want to open a web page on click of a button in any dialog that is created in InstallShield. I think it can be created by using custom actions but as I am new in this tool do not find the exact way to achieve this. Please help if anyone have idea for this.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就像 epotter 提到的,您可以执行以下操作
来打开本地 html 文件
或打开远程站点
希望这有帮助!
Like epotter mentioned, you could do the following
To open a local html file
or to open a remote site
Hope this helps!
在按钮按下的处理程序代码中,调用 LaunchApplication。传入您选择的浏览器的完整路径以及您要导航到的 URL。
In the handler code for the button press, call LaunchApplication. Pass in the full path to the browser of your choice and the URL to which you want to navigate.