Resize window size using VBScript

2019-09-06 21:27发布

Hi I want to know how to re size the window border which is launched by running an application using VBScript.

标签: vbscript
1条回答
叼着烟拽天下
2楼-- · 2019-09-06 22:05

You can use the two commands in this short sub

  Sub Window_Onload
     window.moveTo 1030,110'          Moves the window position
 '                                    horizontally, vertically and
     window.resizeTo 225,175'         changes the width and height
  End Sub'  65+450=515  1280-515=765' of the window
查看更多
登录 后发表回答