The answer to everyone's request is here. I knew there was an API out there to do so. this website has it
http://cuinl.tripod.com/Tips/get_scr...olutionAPI.htm
1. Download the API-GUIDE. Neat utility for all windows API and sample code. google it
http://www.devhood.com/Tools/tool_de...px?tool_id=563
Make a module and dump this code
Declare Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long
Public Const SM_CXSCREEN = 0
Public Const SM_CYSCREEN = 1
Make a form and dump it on the Form_Load() procedure.
Private Sub Form_Load()
Dim Tmp As String
Tmp = GetSystemMetrics(SM_CXSCREEN) & _
"x" & GetSystemMetrics(SM_CYSCREEN)
MsgBox (Tmp)
End Sub
You will see that you can get the information you need.
RJ