CopyHere ignores vOptions – MSDN Forums
https://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1471722&SiteID=1

CodeProject: Decompress Zip files with Windows Shell API and C#. Free source code and programming help
http://www.codeproject.com/KB/cs/decompresswinshellapics.aspx?df=100&forumid=221403&exp=0&select=1405570#xx1405570xx

CodeProject: Decompress Zip files with Windows Shell API and C#. Free source code and programming help
http://www.codeproject.com/KB/cs/decompresswinshellapics.aspx?df=100&forumid=221403&exp=0&select=1405570#xx1405570xx

WinForm程序如何实现自动更新? .NET技术 / C# – CSDN社区 community.csdn.net
http://topic.csdn.net/t/20041222/16/3667425.html

如何使应用程序具有自动更新的功能? .NET技术 / C# – CSDN社区 community.csdn.net
http://topic.csdn.net/t/20020823/14/964523.html
appupdater.aspx

使用Updater Application Block实现自动更新例子 – 昆明小虫 – 博客园
http://www.cnblogs.com/ynlxc/archive/2005/10/31/265252.html
Updater Application Block

自动更新程序的制作方法 – 专注于.Net – 博客园
http://www.cnblogs.com/cxy521/articles/1238247.html

WinForm程序如何实现自动更新? .NET技术 / C# – CSDN社区 community.csdn.net
http://topic.csdn.net/t/20041222/16/3667425.html

Writing a self-updating application in C# By Hendrik Swanepoel
http://www.eggheadcafe.com/articles/pfc/selfupdater.asp

Enterprise Library 3.1 – May 2007
http://msdn.microsoft.com/en-gb/library/aa480453.aspx

WinForm AutoUpdate Strategies : C#, WinForm Auto Update
http://www.experts-exchange.com/Programming/Languages/.NET/Q_23168711.html

Deploying C# Applications
http://msdn.microsoft.com/en-us/library/ms173084(VS.80).aspx

自动更新程序源码下载(C#.Net) – jenry-云飞扬 – 博客园
http://www.cnblogs.com/jenry/archive/2008/10/01/477302.html

VB Helper: HowTo: Shell WinZip to zip and unzip files
http://www.vb-helper.com/howto_shell_zip_and_unzip.html

CodeProject: Decompress Zip files with Windows Shell API and C#. Free source code and programming help
http://www.codeproject.com/KB/cs/decompresswinshellapics.aspx?df=100&forumid=221403&exp=0&select=1583265
Shell32.ShellClass sc = new Shell32.ShellClass(); Shell32.Folder SrcFlder = sc.NameSpace(strSrcPath); Shell32.Folder DestFlder = sc.NameSpace(strDestPath); Shell32.FolderItems items = SrcFlder.Items(); DestFlder.CopyHere(items, 20);

Free Zip component
http://www.xstandard.com/en/documentation/xzip/

VBScript Scripting Techniques: Work with ZIP Files
http://www.robvanderwoude.com/vbstech_files_zip.html

用vbs实现zip_个人交流
http://hi.baidu.com/li_panxue/blog/item/cf303327b29b2607918f9d10.html

用vbs实现zip – 阿强实验室
http://www.hackarea.com/Article/2008/6213.html

VBS显示解压、复制文件的进度[只能解压ZIP文件] – DOS资源站
http://www.cmdos.net/article/sort08/info-1153.html
Sub Extract(ByVal myZipFile, ByVal myTargetDir)
    Dim intOptions, objShell, objSource, objTarget
    Set objShell = CreateObject("Shell.Application")
    Set objSource = objShell.NameSpace(myZipFile).Items()
    Set objTarget = objShell.NameSpace(myTargetDir)
    intOptions = 256
    objTarget.CopyHere objSource, intOptions
    Set objShell  = Nothing       
    Set objSource = Nothing
    Set objTarget = Nothing
End Sub

\’       System.Shell.Folder.CopyHere() 方法的语法格式:
\’              System.Shell.Folder.copyHere(oItem [, intOptions])

    \’ 以下是CopyHere() 方法可用的 intOptions 值, 可参考MSDN (http://msdn2.microsoft.com/en-us/library/ms723207.aspx).
    \’      0: Default. No options specified.
    \’      4: Do not display a progress dialog box.
    \’      8: Rename the target file if a file exists at the target location with the same name.
    \’     16: Click "Yes to All" in any dialog box that is displayed.
    \’     64: Preserve undo information, if possible.
    \’    128: Perform the operation on files only if a wildcard file name (*.*) is specified.
    \’    256: Display a progress dialog box but do not show the file names.
    \’    512: Do not confirm the creation of a new directory if the operation requires one to be created.
    \’   1024: Do not display a user interface if an error occurs.
    \’   4096: Disable recursion. Only operate in the local directory.Don\’t operate recursively into subdirectories.
    \’   9182: Do not copy connected files as a group. Only copy the specified files.

moveHere Method (System.Shell.Folder)
http://msdn.microsoft.com/en-us/library/ms723211(VS.85).aspx

SmartPhone 2003 and .NETcf Primer
http://www.devbuzz.com/Articles/zinc_smartphone_compactframework_pg3.aspx

[Updated 23 Mar 08] Call Firewall + SMS Blocker 1.4 – SmartPhone + MotoQ Versions [Archive] – xda-developers
http://forum.xda-developers.com/archive/index.php/t-307178.html

历史博文

标签:, ,
八月 18, 2009 at 12:00 上午 by yippee 1,041 次
Category: Info
Tags: , ,