摘要:
//引用COM组件//Microsoft HTML Object Library//Microsoft Internet Controls 记得改成x86 阅读全文
摘要:
1 //引用COM组件 2 //Microsoft HTML Object Library 3 //Microsoft Internet Controls 4 5 6 7 SHDocVw.ShellWindows shellWindows = new SHDocVw.ShellWindowsClass(); 8 string ... 阅读全文
摘要:
1 2 3 4 5 6 ... 阅读全文
摘要:
Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application(); if (xlApp == null) { return fa... 阅读全文
摘要:
session_start(); getCode(4,60,20); function getCode($num,$w,$h) { $code = ""; for ($i = 0; $i < $num; $i++) { $code .= rand(0, 9); } //4位验证码也可以用rand(1000,9999)直接生成 //将生成的验证码写入session,备验证时用 $_S... 阅读全文
摘要:
1.为展示效果较好,确定好webbrowser尺寸后,调整网页布局(一般都是网页内容往左上方向移动) 2.一些简单代码 引用Microsoft.mshtml.dll 阅读全文
摘要:
"All Image Files|*.bmp;*.ico;*.gif;*.jpeg;*.jpg;*.png;*.tif;*.tiff|""Windows Bitmap(*.bmp)|*.bmp|""Windows Icon(*.ico)|*.ico|""Graphics Interchange Fo 阅读全文
摘要:
代码网上有的是,多是需要窗体焦点直接show出扫码信息(usb,模拟键盘,hook) 怎样才能真的无焦点获取? 用串口方式 usb转串口 以接收串口通讯消息的方式获取扫码信息 阅读全文
摘要:
使用 瑞工 RG-P80A/B型号 小票打印机时(C#代码调用系统默认打印机打印) 遇到一个很坑爹的问题 首行总是乱码 …… 折腾了半天,解决之 将首行置为空行,即在打印内容前先打印一空行即可 阅读全文
摘要:
1 sr = new StringReader(str); 2 PrintDocument pd = new PrintDocument(); 3 pd.PrintController = new System.Drawing.Printing.StandardPrintController(); 4 ... 阅读全文