我有一个Windows Shell弹出窗口,我需要始终保持在其他程序的顶部。但是,我还需要在其上使用OK
和Cancel
按钮。如果我使用如下所示的4096
方法,则无法使用我的Cancel
按钮。
intResult = WshShell.Popup(strMessage, intTimeout, strTitle, 4096)
如果使用以下内容,则可以使用OK
和Cancel
按钮,但是我无法将弹出式窗口“始终放在顶部”。
intResult = WshShell.Popup(strMessage, intTimeout, strTitle, 1)
有人知道我如何拥有Ok
和Cancel
按钮,并始终将弹出窗口置于其他程序之上吗?
答案 0 :(得分:0)
这可以完成工作:
intResult = WshShell.Popup(strMessage, intTimeout, strTitle, 1 + 4096)