打开的Excle如何使用VBA查看当前窗口的宽与高呢?代码如下:
Sub 查看宽度与高度() Dim myWidth Dim myHeigth myWidth = Application.Width myHeigth = Application.Height MsgBox "当前窗口的宽与高 " _ & vbCrLf & "宽为:" & myWidth _ & vbCrLf & "高为:" & myHeigth, vbInformation Sub
点击“运行程序”后结果显示如下:
本文共 321 字,大约阅读时间需要 1 分钟。
打开的Excle如何使用VBA查看当前窗口的宽与高呢?代码如下:
Sub 查看宽度与高度() Dim myWidth Dim myHeigth myWidth = Application.Width myHeigth = Application.Height MsgBox "当前窗口的宽与高 " _ & vbCrLf & "宽为:" & myWidth _ & vbCrLf & "高为:" & myHeigth, vbInformation Sub
点击“运行程序”后结果显示如下:
转载于:https://www.cnblogs.com/OliverQin/p/7344092.html