Hello FunkymonkUK,
Here is the API code to return the screen resolution.
Hope this helps,![]()
Delcare Function GetSystemMetrics Lib "user32.dll" (ByVal nIndex As Long) As Long Const SM_CXSCREEN As Long = 0 Const SM_CYSCREEN As Long = 1 Public Function ScreenWidth() As Long ScreenWidth = GetSystemMetrics(SM_CXSCREEN) End Function Public Function SreenHeight() As Long ScreenHeight = GetSystemMetrics(SM_CYSCREEN) End Function
Leith Ross
Bookmarks