Resolution Or Screen Area :confused:
-
I have very simple question ... I want to know the current resolution or current screen size of system. I mean that Screen is on the 1024x768 OR 800x600 Size. (I hope u can understand my question ... not very good in english) Any help through code, web site or any thing will be appreciated and i will be thankful for that. Thanx in advance ...
-
I have very simple question ... I want to know the current resolution or current screen size of system. I mean that Screen is on the 1024x768 OR 800x600 Size. (I hope u can understand my question ... not very good in english) Any help through code, web site or any thing will be appreciated and i will be thankful for that. Thanx in advance ...
Hi ! For VB6 :
Dim iScreenWidth as integer Dim iScreenHeight as integer iScreenWidth=Screen.Width / Screen.TwipsPerPixelX iScreenHeight=Screen.Height / Screen.TwipsPerPixelY
I don't know how to do it with VB.NET. Hope this helps. Jerome -
Hi ! For VB6 :
Dim iScreenWidth as integer Dim iScreenHeight as integer iScreenWidth=Screen.Width / Screen.TwipsPerPixelX iScreenHeight=Screen.Height / Screen.TwipsPerPixelY
I don't know how to do it with VB.NET. Hope this helps. Jerome