wb.showMsg=function(text/*信息*/,caption/*标题*/){
closeDlg_t = function(title) {
import winex;
//查找符合标题的对话框
var hwnd;
do{
hwnd =
winex.find("#32770"/*标准对话框类名*/,title )
sleep(100)
}while( !hwnd )
//查找对话框上的第一个按钮
var hbuttton = winex.findEx(hwnd,1,"Button");
winex.click(hbuttton);
}
thread.create(closeDlg_t,caption/*传递参数给线程*/ )
return true; /*返回false则不显示对话框*/
}
相关文章
- 屏幕适配之尺寸的相关概论《一》
- js鼠标相关事件
- Invalid project description相关问题
- eclipse中的the resource is not on the build path of a java project相关问题
- eclipse中的the resource is not on the build path of a java project相关问题
- Info.plist文件中的配置相关值
- 如何在窗体中嵌入一个被调用的exe文件?小妹急求~谢谢!
- [愚翁专栏]如何在窗体以外的地方绘制图像
- vb.net 中如何在窗体中画个圆,用circle语句能不能简单举个例子?谢谢
- 如何在窗体中给用户控件中的Textbox中赋值..新人求解..