石陆软件屋百度VB吧枫叶在线枕善居博客园紫水晶工作室
|
WindowsApi 解压缩文件 [ 2016-10-27 | 本站原创 ] "C#解压.zip文件,网上一搜一大堆方法,有使用System.IO.Compression.GZipStream的,有使用J#库函数的,也有仿Java自己写库函数的,但好多都不大好使,最终发现还是系统函数System.Shell.Folder.copyHere(oItem [, intOptions])最为好使。具体方法如下: 1. 添加引用 Shell32.dll,可以在Windows\system32中找到它。 2. 添加方法,搞定。 阅读全文…… VB.NET实现资源文件释放 [ 2016-10-25 | 本站原创 ] vb.net无控件实现文件下载 [ 2016-10-25 | 本站原创 ] Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long ShellExecute 0, "runas", "D:\1.exe", " commandcontent", vbNullString, vbNormalFocus .NET中调用lisp代码的一个类 [ 2016-10-13 | 本站原创 ] 从一个日本网站上找到的,原址为http://www1.harenet.ne.jp/~hanafusa/mt/memo/archives/000236.html。 如果你不想或不能用acedCmd或SendCommand等,试一下这个。它用的是VLAX方式,源码如下: Using directives 阅读全文…… |