This code demonstrates how to get the screen resolution without using any API code
This code demonstrates how to get the screen resolution without using any API code
Rate This code demonstrates how to get the screen resolution without using any API code
(1(1 Vote))
' I wrote this code for a label but you can use any control that can display text.
' 1) Put a label or any control that can display text and then put the code below.
Private Sub Form_Load()
Label1.Caption = Screen.Width / 15 & "x" & Screen.Height / 15
End Sub
This code demonstrates how to get the screen resolution without using any API code Comments
No comments yet — be the first to post one!
Post a Comment