Determine screen resolution
Determine screen resolution
Rate Determine screen resolution
(3(3 Vote))
Dim intHeight As Integer
intWidth = Screen.Width \ Screen.TwipsPerPixelX
intHeight = Screen.Height \ Screen.TwipsPerPixelY
MsgBox "Screen Resolution:" + vbCrLf + vbCrLf + Str$(intWidth) + " x" + Str$(intHeight), 64, "Info"
Determine screen resolution Comments
No comments yet — be the first to post one!
Post a Comment