如何处理多个打开的窗口

发布于 2024-10-30 22:23:12 字数 58 浏览 0 评论 0原文

在 Windows 应用程序中,如果为一个窗口编写脚本,并且同一窗口打开多次,则脚本会失败并出现错误。

In Windows application if script is written for one window and if is opening for more than one time the same window then the scripts fail and through error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沐歌 2024-11-06 22:23:12

对于这种情况.. 为什么不在脚本中添加一个检查。检查应用程序是否存在。

例如:

   if javawindow(xxxxx).Exist(0) then
      ' some code for not opening the same window.          
   else
      'some code for opening the window.
   end if

For such Situation.. Why don't you add a Check in your script. check whether Application exist or not.

Eg:

   if javawindow(xxxxx).Exist(0) then
      ' some code for not opening the same window.          
   else
      'some code for opening the window.
   end if
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文