上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: 1、C#调用斑马打印机打印条码标签(支持COM、LPT、USB、TCP连接方式和ZPL、EPL、CPCL指令) http://blog.csdn.net/ldljlq/article/details/7338772 2、C# 代码 阅读全文
posted @ 2016-12-06 08:51 chengeng 阅读(3886) 评论(0) 推荐(0)
摘要: 个人备忘: 1、装驱动,装驱动要装对应的ZPL或者EPL版本,目前发现GK888T无需选择,直接装GK888T即可,其他机型未知。 2、标签设计,文本部分用SimSun-ExtB字体,变量内容部分用ZEBAR 0字体,ZEBAR 0 中的0表示字体大小。 3、把命令打印到记事本。 /* ^XA ^X 阅读全文
posted @ 2016-12-05 14:16 chengeng 阅读(7602) 评论(0) 推荐(0)
摘要: 根据微软官方的解释,WCF(之前的版本名为“Indigo”)是使用托管代码建立和运行面向服务(Service Oriented)应用程序的统一框架。它使得开发者能够建立一个跨平台的安全、可信赖、事务性的解决方案,且能与已有系统兼容协作。 云平台框架。 上次在作业的时候遇到了一件蛋疼的事情。 根据要求 阅读全文
posted @ 2016-10-22 14:16 chengeng 阅读(441) 评论(0) 推荐(0)
摘要: if object_id('tb')is not null drop table tbGocreate table tb(姓名 varchar(10),课程 varchar(10),分数 int)insert into tb values('张三','语文',74)insert into tb va 阅读全文
posted @ 2016-10-19 08:47 chengeng 阅读(29201) 评论(3) 推荐(0)
摘要: 1.查看SQL语句IO消耗 set statistics io on sql 语句 set statistics io off 2.查看SQL语句时间消耗 set statistics time on sql 语句set statistics time off 3.查看SQL语句索引消耗 set s 阅读全文
posted @ 2016-09-27 11:00 chengeng 阅读(355) 评论(0) 推荐(0)
摘要: Office Professional Plus 2013 64位简体中文版文件名: cn_office_professional_plus_2013_x64_dvd_1134006.iso语言: Chinese – SimplifiedSHA1:adb8d9d3095638f25e9df2e708 阅读全文
posted @ 2016-09-12 11:48 chengeng 阅读(2273) 评论(0) 推荐(0)
摘要: Sql Server 中使用case when then 判断某字段是否为null,和判断是否为字符或数字时的写法不一样,而且语法能正常执行, 如果不注意数据内容,很容易搞错。 错误方法:CASE columnName WHEN null THEN 0 ELSE columnName END正确方法 阅读全文
posted @ 2016-09-08 09:34 chengeng 阅读(636) 评论(0) 推荐(0)
摘要: /****** Object: View [dbo].[ViewTable] Script Date: 09/06/2016 11:12:28 ******/ SET ANSI_NULLS ONGO SET QUOTED_IDENTIFIER ONGO -- -- Author: gengc -- 阅读全文
posted @ 2016-09-06 11:18 chengeng 阅读(394) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2016-09-06 09:39 chengeng 阅读(0) 评论(0) 推荐(0)
摘要: 1、首先在VS环境下建立一个窗体 2、然后在网上下载一个DotNetSpeech.dll,并添加引用到项目中。 3、代码如下: 3.1 试听部分 private void btnTestListen_Click(object sender, EventArgs e) { try { SpeechVo 阅读全文
posted @ 2016-08-26 10:32 chengeng 阅读(327) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页