代码改变世界

随笔档案-2004年07月

Advanced daily build - Auto update build number and lable the source code and bin output

2004-07-29 09:03 by atempcode, 1915 阅读, 收藏,
摘要: Several days ago, coolbug posted a useful ducument about the daily build. Very instructive. But it missed some important points IMO. For the daily build, I need: 1. The build number should be increas... 阅读全文

Centralized management of project version

2004-07-29 08:54 by atempcode, 1205 阅读, 收藏,
摘要: (for native VC++ projects only) Nowadays, one solution may contain several exe or dll outputs. A best practice is to mark all the output binary file the same version when release. We all know we can c... 阅读全文

SVN installed

2004-07-21 22:21 by atempcode, 714 阅读, 收藏,
摘要: Installed Subversion on a test machine according to the instruction in 台湾同胞的繁体中文版, Win32下的安装文档.I use Subclipse as client. Just love the clean and elegent of Eclipse. More experience to come... 阅读全文

What's new in the VS2005 debugger -- Tracepoint

2004-07-21 22:10 by atempcode, 1132 阅读, 收藏,
摘要: Trace point is a type of breakpoint whick don't break.Right click a breakpoint in the IDE:Brilliant as you can see what can be done with it.You can even run macro when the tracepoint hit! 阅读全文

How support register display in a custom debug engine

2004-07-21 21:58 by atempcode, 721 阅读, 收藏,
摘要: Several days ago, I asked the questions in the new group, yesterday a MS guy answered. Jim Glass [MSFT] wrote: > Michael,> > Question: "I read through the documents and can not find a way to show the ... 阅读全文

Create a new babel package

2004-07-21 21:42 by atempcode, 702 阅读, 收藏,
摘要: From the newsgroup: Andre W B Furtado wrote: >>I've made some changes do the babel source and would like to compile it >>giving it a new ID. What previous GUID(s) do I need to change? > > > Answe... 阅读全文

What's new in the VS2005 debugger?

2004-07-16 12:58 by atempcode, 980 阅读, 收藏,
摘要: Remote debugSTL data displayTracepoint New data tip(still to come)Visualization(still to come) 阅读全文

What's new in VS2005 debugger -- STL data display

2004-07-16 12:48 by atempcode, 772 阅读, 收藏,
摘要: The STL data diaplay has improved in the VS2005. Conisder the simple c++ code: #include "stdafx.h"#include int _tmain(int argc, _TCHAR* argv[]){std::vector V;V.insert(V.begin(), "hello");V.insert(V... 阅读全文

Waht's new in the VS2005 debugger? -- Remote debug enhancement

2004-07-16 11:44 by atempcode, 1138 阅读, 收藏,
摘要: Now msvsmon can run from a file share! Read the walk through from the MS document: Scenario: Alice and Bob both are employees at SomeCompany. SomeCompany has an NT domain named SomeCompany. Bob is ha... 阅读全文

Clippy is back! (to VS.Net 2005)

2004-07-14 09:35 by atempcode, 442 阅读, 收藏,
摘要: Do you still remember the little clippy in the Office? It is back!Source: http://notgartner.com/posts/355.aspx 阅读全文

The simple debugger

2004-07-12 16:03 by atempcode, 582 阅读, 收藏,
摘要: This is the p-code of a simple debugger on Windows.1. the debugger create a process with the dwCreationFlags set to DEBUG_ONLY_THIS_PROCESS.2. After the target started, the debugger enter into a loop.... 阅读全文

Shipping a product is no easy...

2004-07-10 09:48 by atempcode, 562 阅读, 收藏,
摘要: What happened in the week before VS.net2005 beta1 released:http://blogs.msdn.com/Somasegar/archive/2004/07/09/178789.aspx 阅读全文

Debugging JScript in the Custom Wizards

2004-07-09 16:09 by atempcode, 1310 阅读, 收藏,
摘要: From newsgroup: > I am creating some custom wizards, it would go faster if I could debug the > jscript code, even trace statements to a debug viewer would be fine. > > Any suggestions? > > JamesL At... 阅读全文

New Google Group Beta

2004-07-09 14:49 by atempcode, 452 阅读, 收藏,
摘要: http://groups-beta.google.comUI looks like GMail, and most important we can use this to search group while groups.google.com is blocked. 阅读全文

New Feature In the VS.Net 2005 Editor

2004-07-08 09:23 by atempcode, 646 阅读, 收藏,
摘要: The Definition toolwindow The Definition toolwindow is a new toolwindow in the VS2005. It will show the definition of the tag under the cursor. SourceInsight already had this, MS is really good at... 阅读全文

Who am I

2004-07-08 09:20 by atempcode, 512 阅读, 收藏,
摘要: I worked in a BIOS company. Our code runs mainly after the computer power on and before the OS boot. Now my project is a new IDE for BIOS development. We take advantage of the VSIP technology to build... 阅读全文

You are not alone

2004-07-08 09:18 by atempcode, 692 阅读, 收藏,
摘要: 去年的这个时候,VSIP还没有公开下载。公司从MS拿到VSIP的评估版,我们就开始做评估。感觉非常孤单,因为签了封口协议,不能公开谈论VSIP,网上自然也没有相关资料。后来MS改变了VSIP的发布方式,VSIP可以下载了,还有了一个newsgroup。这个newsgroup就成了VSIP开发者的聚集地。由一位老兄Dimirtry经常问一些问题,看看mail address 是 IntelliJ公司... 阅读全文

Beta is beta - Compatibility issue of VSIP 2005 beta1

2004-07-07 08:42 by atempcode, 812 阅读, 收藏,
摘要: I have installed VS.Net 2005 and VSIP 2005 on my laptop which have VS.net 2003 and VSIP 2003 installed. Yesterday night, when I opened my VSIP package project in VS.net 2003 and tried to compile, the ... 阅读全文

Babel in VSIP 2005

2004-07-06 11:08 by atempcode, 945 阅读, 收藏,
摘要: Just installed VSIP 2005. After a quick review of the source code of the Babel package, I found that it has not been changed much.All the text help function in text.h and text.cpp has been removed. Ad... 阅读全文

VSIP 2005 Beta1 Releases

2004-07-06 09:03 by atempcode, 739 阅读, 收藏,
摘要: http://www.microsoft.com/downloads/details.aspx?FamilyID=94c9970d-c247-4ded-a76d-f7b3d589e71d&DisplayLang=en 阅读全文

Label and Filter in Gmail

2004-07-01 11:36 by atempcode, 912 阅读, 收藏,
摘要: 在Gmail中,我们可以给mail打上一个label, 再结合filter 功能,就可以对mail进行分类管理,十分方便。 1. 创建label: Click the edit label and then input the label name. Here I use SQLLite as the name. 2. 设置filter. Click Create a filter. I w... 阅读全文