摘要:
declare @pagesize integer,@cpage integer;set @pagesize =500;set @cpage = 1;SELECT TOP (@pagesize) * FROM (SELECT row_number() over(order by Membe... 阅读全文
摘要:
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'Users_TEMP') AND type in (N'U')) BEGIN DROP TABLE Users_TEMP; SELE... 阅读全文
摘要:
1. 禁止右键点击$(document).ready(function(){$(document).bind("contextmenu",function(e){returnfalse;});});2. 隐藏搜索文本框文字Hidewhenclickedinthesearchfield,thevalu... 阅读全文
摘要:
原文地址:http://luopq.com/2015/11/03/design-pattern-factory/通常我们创建对象最常规的方法就是使用new关键字调用构造函数,这会导致对象之间的依赖性。工厂模式是一种有助于消除类之间依赖性的设计模式,它使用一个方法来决定要实例化哪一个类。本文详细介绍了... 阅读全文
摘要:
public class BarPrinter { public static byte[] ZPLPrinter(string p_title = "", string p_specs = "", string p_date = "", string p_code = "") ... 阅读全文
摘要:
我们最常用的斑马(Zebra)条码打印机,应用ZPLII命令来控制打印,说明书中有每条指令的详细说明及相关示例,下面是各指令的中文释义:^A对Zebra内置点阵字体缩放 ^A(可缩放/点阵字体)命令用于内置的True Type字体。可缩放字体(也可以认为是平滑矢量字体)能够以点为单位来对横向、纵向... 阅读全文
摘要:
private void btnPrinter_Click(object sender, EventArgs e) { #region ESC 热敏图像点阵像素点读取打印 //Bitmap bitmap = new Bitmap... 阅读全文
摘要:
IPAddress ip = IPAddress.Parse("192.168.1.212"); IPEndPoint iport = new IPEndPoint(ip, 9100);//9100为小票打印机指定端口 Socket... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Drawing;using System.Linq;using System.Text;using System.Net;using System.Net.Sockets;names... 阅读全文
摘要:
class LptControl { private string LptStr = "lpt1"; public LptControl(string l_LPT_Str) { LptStr = l_LPT_... 阅读全文