gpt4 book ai didi

axapta - 单击 Dynamics AX 中的标签后是否可以打开 WebBrowser?

转载 作者:行者123 更新时间:2023-12-04 18:19:00 25 4
gpt4 key购买 nike

在 Dynamics AX 中的表单上单击按钮/标签/字符串编辑后是否可以打开 Web 浏览器 (IE/Chrome/Firefox)?
先感谢您。
我在 MS Dynamics AX 2012 中开发

最佳答案

您可以使用 Info.urlLookup() .

infoLog.urlLookup('http://nameofthepageyouwanttoopen.com');

如前所述 here .

或者你可以使用描述的方法 here .
void clicked()
{
System.Diagnostics.Process pr = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo si = new System.Diagnostics.ProcessStartInfo('URL HERE');
pr.set_StartInfo(si);
pr.Start();
}

关于axapta - 单击 Dynamics AX 中的标签后是否可以打开 WebBrowser?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11083128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com