| Profil de Libin绿色家园PhotosBlogListes | Aide |
|
28 avril 让VS 2008支持Subversion插件AnkhsvnVisual
Studio 2005 有一个开源的Subversion插件,Ankhsvn
(http://ankhsvn.tigris.org/),安装后,VS
2005中将内置Subversion的支持,可以直接在VS里面提交修改。我经常用它和TortoiseSVN
配合来使用Subversion,十分方便。
再次打开Visual Studio 2008后,就会发现Ankhsvn已经集成进系统了。 Dim shell, filename, fso, file, content Set shell = CreateObject("wscript.shell") Set fso = CreateObject("Scripting.FileSystemObject") filename = "ankh.reg"![]() shell.run "reg export HKLMSOFTWAREMicrosoftVisualStudio8.0AddinsAnkh " & filename, 1, True![]() Set file = fso.OpenTextFile(filename, 1, False, True) content = file.ReadAll content = Replace(content, "VisualStudio8.0", "VisualStudio9.0") content = Replace(content, ".NET 2005", ".NET 2008") file.Close()![]() Set file = fso.OpenTextFile(filename, 2, True) file.Write content file.Close()![]() shell.run "reg import " & filename, 1, true![]() fso.DeleteFile filename16 avril Gpredict is a real-time satellite tracking and orbit prediction applicationGpredict ScreenshotsBelow you can see some sample screenshots of gpredict in in action. They illustrate the main features of gpredict. I have a whole album dedicated to screenshots of Gpredict in my Media Gallery. You can also post links to your own screenshots and pictures of Gpredict in action on the forum. Main Window, Modules Layouts, and ViewsFuture Pass PredictionsRadio and Antenna Rotator ControlPreferences and Settings14 avril 用VC6.0编译boost 1.38.01. 从boost.org下载下1.38.0的源码 2.编译jam 在boost_1_38_0\tools\jam\src下有个build.bat ,修改其ProgramFiles变量为VC安装的目录。 执行build.bat msvc,等编译成功,会在\boost_1_38_0\tools\jam\src\bin.ntx86下生成bjam.exe 3.将bjam拷贝到boost_1_38_0\bin,将目录增加环境变量PATH。 4.编译整个boost 在根目录boost_1_38_0,执行bjam --toolset=msvc-6.0
另外: 5. 如果编译boost里面单独的模块,如regex 进入boost_1_38_0\libs\regex\build 执行bjam bjam --toolset=msvc-6.0 就会在boost_1_38_0\bin.v2\libs\regex\build\msvc-6.0\debug\threading-multi下面生成boost_regex-vc6-mt-gd-1_38_0.dll和boost_regex-vc6-mt-gd-1_38_0.lib库,可以给VC6.0使用。 |
|
|