上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Web;using System.Web.Services; namespace BarCodePrintAp 阅读全文
posted @ 2018-05-24 14:30 chengeng 阅读(638) 评论(0) 推荐(0)
摘要: 1、注意:确认是否已安装 AccessDatabaseEngine.exe 2、可视化按提示操作。 阅读全文
posted @ 2018-05-22 16:59 chengeng 阅读(163) 评论(0) 推荐(0)
摘要: USE[master] GO ALTER DATABASE 要清理的数据库名称 SET RECOVERY SIMPLE WITH NO_WAIT GO ALTER DATABASE 要清理的数据库名称 SET RECOVERY SIMPLE --简单模式 GO USE 要清理的数据库名称 GO DB 阅读全文
posted @ 2018-05-14 16:04 chengeng 阅读(198) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.IO;using System.Runtime.InteropServices;using System.Text; namespace PrintLabel{ public cla 阅读全文
posted @ 2018-04-19 16:40 chengeng 阅读(346) 评论(0) 推荐(0)
摘要: 斑马打印机客户端GET和POST,以及后端两种打印方式。 背景环境:打印机安装在客户端外网。当用户登录时,通过ajax取服务器数据,返回打印机命令,然后客户端通过JS发送给斑马打印机。 1、使用Get方式打印 1.1 前端页面js代码 jQuery(function () { $("#btnRePr 阅读全文
posted @ 2018-01-29 09:20 chengeng 阅读(1576) 评论(0) 推荐(0)
摘要: <script type="text/javascript"> function printZpl(zpl) {var printWindow = window.open();printWindow.document.open('text/plain')printWindow.document.wr 阅读全文
posted @ 2017-12-29 16:43 chengeng 阅读(3150) 评论(0) 推荐(0)
摘要: //遍历table var tableObj = document.getElementById("tableName");var str = "";for(var i=0;i<tableObj.rows.length;i++){ for(varj=0;j<tableObj.rows[i].cell 阅读全文
posted @ 2017-12-07 13:39 chengeng 阅读(239) 评论(0) 推荐(0)
摘要: <html lang="zh-ch"><head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-wid 阅读全文
posted @ 2017-10-16 11:06 chengeng 阅读(1723) 评论(0) 推荐(0)
摘要: 两个主要方法 /// <summary>/// 用途:/// 用源表和目标表比较,返回差异的数据(目标表为参照物)/// /// 逻辑:/// 1、合并两个表/// 2、循环合并后得到的表,判断是否在目标表中存在,如果不存在,则是新增的,RowState为设置为ADD,如果存在,RowState设置 阅读全文
posted @ 2017-09-11 16:14 chengeng 阅读(338) 评论(0) 推荐(0)
摘要: 代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 // // Microsoft Data Access Application Block 阅读全文
posted @ 2017-08-18 09:08 chengeng 阅读(220) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页