Sparky1157
Programmer
I've tried a couple of methods for resizing an application window, but neither of these options work - they result in a compile error.
Method #1
---------
WshShell.moveTo 1030,110 ' Moves the window position
' horizontally, vertically and
WshShell.resizeTo 225,175 ' changes the width and height
Method #2
---------
With Application
.WindowState = wdWindowStateNormal
.Resize Width:=InchesToPoints(7), Height:=InchesToPoints(6)
End With
Could someone please offer a solution to this issue?
Method #1
---------
WshShell.moveTo 1030,110 ' Moves the window position
' horizontally, vertically and
WshShell.resizeTo 225,175 ' changes the width and height
Method #2
---------
With Application
.WindowState = wdWindowStateNormal
.Resize Width:=InchesToPoints(7), Height:=InchesToPoints(6)
End With
Could someone please offer a solution to this issue?