I would like a simple if statement, with I can check, that my Form on which sreen locates.
Something like this pseudo code:
If (...my Form locates on the primary screen...) Then
screenWidth = Screen.AllScreens(0).Bounds.Width
screenHeight = Screen.AllScreens(0).Bounds.Height
Else
screenWidth = Screen.AllScreens(1).Bounds.Width
screenHeight = Screen.AllScreens(1).Bounds.Height
End If