以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 获取屏幕的分辨率 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=38078) |
-- 作者:longtechwj -- 发布时间:2013/7/19 9:11:00 -- 获取屏幕的分辨率 怎样获取屏幕的分辨率 |
-- 作者:longtechwj -- 发布时间:2013/7/19 9:12:00 -- 主屏的 |
-- 作者:Bin -- 发布时间:2013/7/19 9:19:00 -- Dim rect As System.Drawing.Rectangle =System.Windows.Forms.Screen.PrimaryScreen.Bounds MessageBox.show(rect.Height & "*" & rect.Width)
|
-- 作者:longtechwj -- 发布时间:2013/7/19 9:30:00 -- 工作区间,不包括状态栏怎么获取,谢谢 |
-- 作者:Bin -- 发布时间:2013/7/19 9:36:00 -- MessageBox.show(windows.forms.SystemInformation.WorkingArea.Height) MessageBox.show(windows.forms.SystemInformation.WorkingArea.width) |
-- 作者:longtechwj -- 发布时间:2013/7/19 9:39:00 -- 谢谢 |