aardio窗体相关

时间:2021-12-11 07:28:24

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则不显示对话框*/
}