2011年8月11日
摘要: 直接贴代码: private void button1_Click(object sender, EventArgs e) { Process p = new Process(); string filepath = @"d:\temp\062201.xls"; if (File.Exists(filepath) == true) { try { p.StartInfo.FileName = filepath; p.StartInfo.Verb = "print"; p.Start(); } catch (Exception ex) { System.W 阅读全文
posted @ 2011-08-11 10:16 -奶牛- 阅读(182) 评论(1) 推荐(0)