摘要:
1.读取文件; // TCHAR szFilters[]= _T("MyType Files (*.my)|*.my|All Files (*.*)|*.*||"); //跳出对话框,选择指定的文件类型 TCHAR szFilters[]= _T("DXF Files (*.dxf)|*.dxf") 阅读全文
摘要:
@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 阅读全文
摘要:
重转系统后,结果装完之后发现无论我用什么播放器播放视频时就说无法解码音频。这个时候点击音量图标,报错说"There are no active mixer devices available. To install mixer device,to go control panel,click pri 阅读全文
摘要:
装箱(Boxing):值类型->引用类型,把一个值类型数据放到堆上,就需要装箱操作. 拆箱(Unboxing):引用类型->值类型,把一个放在堆上的值类型数据取出来,则需要进行拆箱操作. 值类型(原类型(Sbyte、Byte、Short、Ushort、Int、Uint、Long、Ulong、Char 阅读全文
摘要:
publicvoidDrivePrint(stringfilePath){stringpdfPath=filePath;System.Drawing.Printing.PrintDocumentpd=newSystem.Drawing.Printing.PrintDocument();ProcessprocessInstance=newProcess();ProcessStartInfostartInfo=newProcessStartInfo();startInfo.UseShellExecute=true;startInfo.Verb="Print";startInfo 阅读全文
摘要:
1.设置窗体属性ShowInTaskbar=false 2.加notifyicon控件notifyicon1,为控件notifyicon1的属性icon添加一个icon图标。 3.添加触发事件代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--//窗体... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--privatestringGetLocalIp(){stringlocalIp;IPHostEntryhost;host=Dns.GetHostEntry(Dns.GetHostName());if(... 阅读全文
摘要:
[代码]调用代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--privatevoidFrmMain_Load(objectsender,EventArgse){if(IsRunning("CleanFileServer")==true){Messag... 阅读全文
摘要:
1.数据库下载地址 http://sqlite.phxsoftware.com/ 2.下载完成添加引用System.Data.SQLite.dll 3.SQLite操作通用类 <!--<br/><br/>Code highlighting produced by Actipro CodeHighli 阅读全文