You can get the screen resolution of the current screen by using SystemInformation.PrimaryMonitorSize.Width and SystemInformation.PrimaryMonitorSize.Height. The number of pixels per inch you can get from a Graphics object: Graphics.DpiX and Graphics.DpiY. The rest is just a simple equation (Pythagoras). I hope that helps,
David.