摘要: 1.读取文件; // TCHAR szFilters[]= _T("MyType Files (*.my)|*.my|All Files (*.*)|*.*||"); //跳出对话框,选择指定的文件类型 TCHAR szFilters[]= _T("DXF Files (*.dxf)|*.dxf") 阅读全文
posted @ 2012-10-29 11:14 ike_li 阅读(886) 评论(0) 推荐(0) 编辑
摘要: @echo offecho 设置IP地址echo正在设置IP地址和子网掩码.netsh interface ip set address name="本地连接" source=static addr=192.168.0.2 mask=255.255.255.0echo设置网关netsh interface ip set address name="本地连接" gateway=192.168.0.1 gwmetric=0echo 设置首选DNS1netsh interface ip set address name="本地连接" sou 阅读全文
posted @ 2012-08-14 15:52 ike_li 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 重转系统后,结果装完之后发现无论我用什么播放器播放视频时就说无法解码音频。这个时候点击音量图标,报错说"There are no active mixer devices available. To install mixer device,to go control panel,click pri 阅读全文
posted @ 2012-07-16 09:34 ike_li 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 装箱(Boxing):值类型->引用类型,把一个值类型数据放到堆上,就需要装箱操作. 拆箱(Unboxing):引用类型->值类型,把一个放在堆上的值类型数据取出来,则需要进行拆箱操作. 值类型(原类型(Sbyte、Byte、Short、Ushort、Int、Uint、Long、Ulong、Char 阅读全文
posted @ 2011-10-31 14:08 ike_li 阅读(396) 评论(0) 推荐(0) 编辑
摘要: publicvoidDrivePrint(stringfilePath){stringpdfPath=filePath;System.Drawing.Printing.PrintDocumentpd=newSystem.Drawing.Printing.PrintDocument();ProcessprocessInstance=newProcess();ProcessStartInfostartInfo=newProcessStartInfo();startInfo.UseShellExecute=true;startInfo.Verb="Print";startInfo 阅读全文
posted @ 2011-05-04 15:42 ike_li 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 1.设置窗体属性ShowInTaskbar=false 2.加notifyicon控件notifyicon1,为控件notifyicon1的属性icon添加一个icon图标。 3.添加触发事件代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--//窗体... 阅读全文
posted @ 2010-11-29 10:55 ike_li 阅读(438) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--privatestringGetLocalIp(){stringlocalIp;IPHostEntryhost;host=Dns.GetHostEntry(Dns.GetHostName());if(... 阅读全文
posted @ 2010-11-09 15:44 ike_li 阅读(642) 评论(2) 推荐(0) 编辑
摘要: [代码]调用代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--privatevoidFrmMain_Load(objectsender,EventArgse){if(IsRunning("CleanFileServer")==true){Messag... 阅读全文
posted @ 2010-11-09 12:11 ike_li 阅读(319) 评论(0) 推荐(1) 编辑
摘要: 1.数据库下载地址 http://sqlite.phxsoftware.com/ 2.下载完成添加引用System.Data.SQLite.dll 3.SQLite操作通用类 <!--<br/><br/>Code highlighting produced by Actipro CodeHighli 阅读全文
posted @ 2010-11-01 15:48 ike_li 阅读(792) 评论(0) 推荐(0) 编辑
摘要: 获取电脑CPUID,HdId,MacId后,加工处理这个字符串代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--//交换字符的位置privatestringChangCharLocation(stringpcNum){stringhidMacId=p... 阅读全文
posted @ 2010-08-03 14:55 ike_li 阅读(258) 评论(0) 推荐(0) 编辑