How to get programmatically screen width?

  • Thread starter Thread starter Dino Buljubasic
  • Start date Start date
D

Dino Buljubasic

How can I get programmatically screen width of my screen when I start
my application?

Thank you,
Dino
 
Hi, Dino

check SystemInformation class and WorkingArea / VirtualScreen properties

HTH
Alex
 
* Dino Buljubasic said:
How can I get programmatically screen width of my screen when I start
my application?

Monitor size:

'SystemInformation.PrimaryMonitorSize'
'SystemInformation.WorkingArea'
'SystemInformation.VirtualScreen'
'Screen.PrimaryScreen.Bounds'
'Screen.PrimaryScreen.WorkingArea'

When using multiple monitors:

'Screen.AllScreens'
 
Back
Top