2012年12月19日

得到本机名称和其IP地址和是否联网

摘要: 添加System.Net单元集,用到其中的Dns类即可,AddressList显示本机的IP地址。在窗体 上放一textBox显示本机名称,用listBox显示本机的IP。代码如下: private void button1_Click(object sender, EventArgs e) { textBox1.Text = Dns.GetHostName(); IPAddress[] adds= Dns.GetHostByName(Dns.GetHostName()).AddressList; string s = ""... 阅读全文

posted @ 2012-12-19 15:59 天上星 阅读(183) 评论(0) 推荐(0) 编辑

得到打印机的信息

摘要: 添加 System.Drawing.Printing单元。PrinterSettings类是获取本地打印机的类。InstalledPrinters是获得安装打印机的集合。PrinterResolutions是指定打印机可以支持的分辨率的集合。PaperSizes是指定打印机可以支持的打印纸张大小。在窗体中放上textBox来显示打印机的名称,Combobox中显示所支持的分辨率,Richtext显示它的详细信息private void Form1_Load(object sender, EventArgs e) { richTextBox1.Clear();... 阅读全文

posted @ 2012-12-19 15:48 天上星 阅读(179) 评论(0) 推荐(0) 编辑

得到屏幕分辨率

摘要: 有个SystemInformation类,用它的VirtualScreen可以得到屏幕的相关信息。如得到VirtualScreen的宽和高就是屏幕的分辨率。private void Form1_Load(object sender, EventArgs e) { int wd= SystemInformation.VirtualScreen.Width; int wh = SystemInformation.VirtualScreen.Height; MessageBox.Show(string.Format("{0}X{1... 阅读全文

posted @ 2012-12-19 15:03 天上星 阅读(190) 评论(0) 推荐(0) 编辑

导航