Hello!
My monitor's resolution is 1600 x 900 pixels.
I've made full screenmode like this:
If I then get the dimensions of screen's working area like this...
...debug.print shows that the width of the screenWorkingAr ea is 1600, but the height of the screenWorkingAr ea is 870 -- not 900. Why? What should I do in order to get the height of screenWorkingAr ea as 900?
I use Visual Basic 2008 Express Edition.
My monitor's resolution is 1600 x 900 pixels.
I've made full screenmode like this:
Code:
Me.WindowState = FormWindowState.Maximized Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
Code:
Dim screenWorkingArea As Rectangle screenWorkingArea = SystemInformation.WorkingArea
I use Visual Basic 2008 Express Edition.
Comment