我使用以下代码来最大化浏览器窗口。
obj = Win32API.new("user32.dll", "FindWindow", ['P','P'], 'i')
hwnd = obj.call(classname, winname)
wndConsole = Win32API.new( "user32.dll" , "ShowWindow" , ['i' , 'i'] , 'i' )
result = wndConsole.call( hwnd , 3 )
如果我通过命令行启动竹子,它们工作正常。 但是,如果我通过服务推出竹子,它们就不起作用。
答案 0 :(得分:0)
这可能是我遇到的,也可能不是,但如果Bamboo作为一项服务运行,你已经给它GUI访问,那么可用的最大分辨率是800x600。