摘要: public static string GetPrinterStatus(string PrinterName) { int intValue = GetPrinterStatusInt(PrinterName); string strRet = string.Empty; switch (intValue) { case 0: strRet = "准备就绪(Ready)"; break; case 0x00000200: strRet = "忙(Busy)"; break; case 0x00400000: st... 阅读全文
posted @ 2012-08-13 14:32 小锋神 阅读(19365) 评论(3) 推荐(4) 编辑