使用C#系统服务定时执行操作
1.新建项目 --》 Windows 服务2.Service1.cs代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.ServiceProcess;using …… 阅读全文
1.新建项目 --》 Windows 服务2.Service1.cs代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.ServiceProcess;using …… 阅读全文
using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;namespace BarCodeLibrary{ public class ZebraGesigner { [StructLayout(LayoutKi …… 阅读全文
using System;using System.Collections.Generic;using System.Text;namespace MacPrinter{ public class ZPL_Command { /// (^EF) /// 清除设定 (已包含起始结束命令) /// …… 阅读全文
//write txtStringBuilder builder = new StringBuilder();FileStream fs = new FileStream(saveFileName, FileMode.Create);StreamWriter sw = new StreamWriter(fs, Encoding.Default);for (int i = 0; i < ds …… 阅读全文
using System;using System.Collections.Generic;using System.Data;using System.Drawing;namespace Code{ class BarCode { public class Code128 { private DataTable …… 阅读全文
我们经常会遇到在Winform或是WPF中点击链接或按钮打开某个指定的网址, 或者是需要打开电脑中某个指定的硬盘分区及文件夹, 甚至是"控制面板"相关的东西, 那么如何做呢? 答案是使用System.Diagnostics.Process.Start()。它的作用是调用外部的命令。 先来看看它的调用方法: Process.Start () Process.Start (ProcessS …… 阅读全文
using System;using System.Text;using System.Runtime.InteropServices;using System.Reflection;using System.Windows.Forms;namespace MouseKeyboardLibrary{ /// /// Abstract base class for …… 阅读全文
void Application_Error(object sender, EventArgs e) { // 在出现未处理的错误时运行的代码 Exception objErr = Server.GetLastError().GetBaseException(); //获取错误 string err = "Error Caught in Ap …… 阅读全文