08 2010 档案

 
Public Symbols and Private Symbols
摘要:When you build a driver or other program, the program's symbols are usually stored in symbol files, although some older compilers store certain symbols in the executable file. When a debugger is analyzing a program, it needs to access the program's symbols. Typically, symbol files can includ 阅读全文
posted @ 2010-08-29 16:03 做个不善的人 阅读(594) 评论(0) 推荐(0)
Systems Thinking in Project Management
摘要:Most project managers tend to think only conventionally when managing projects. This means that they begin from a given project goal, plan the project to meet the goal, then execute the plan in order to meet the project goal. Little thought is given to strategic thinking or systems thinking. As a re 阅读全文
posted @ 2010-08-29 14:27 做个不善的人 阅读(981) 评论(0) 推荐(0)
Dialog Boxes
摘要:Dialog 依其 与父窗口的关系,分为两类:Modal dialog: 在关闭对话框前,不能激活同一应用的其他窗口;Modeless dialog:创建Modal Dialog Box可以使用API函数DialogBox创建一个Modal Dialog Box。You must specify the identifier or name of a dialog box template resource and a pointer to the dialog box procedure. The DialogBox function loads the template, displays 阅读全文
posted @ 2010-08-29 11:25 做个不善的人 阅读(1541) 评论(0) 推荐(0)
Win32 编程入门
摘要:Win32 程序开发的流程message based, event drivenWin32程序是message based, event driven。也就是说Win32程序的运行是依靠外部不断发生的事件来驱动的,也就是说,程序不断等待(有一个while循环),等待任何可能的输入,然后做判断,再做适当的处理。因此Win32程序只需要做好如下几件事情就可以了:1. 定义窗口的外观;2. 定义当不同的事件发生时,程序做什么样的反应(定义窗口处理函数);3. 写一个While循环,不断检测新事件的发生,并将其发送给不同的窗口处理函数程序进入点WinMainmain是一般C程序的进入点:int mai 阅读全文
posted @ 2010-08-28 22:05 做个不善的人 阅读(22963) 评论(0) 推荐(3)
DOCTYPE
摘要:The doctype declaration should be the very first thing in an HTML document, before the <html> tag. The doctype declaration is not an HTML tag; it is an instruction to the web browser about what version of the markup language the page is written in. The doctype declaration refers to a Document 阅读全文
posted @ 2010-08-25 19:57 做个不善的人 阅读(391) 评论(0) 推荐(0)
SOS debug
摘要:如果执行extension中的command时,没有managed code在执行,将会出现如下错误: Failed to find runtime DLL(clr.dll), 0x80004005 Extension commands need clr.dll in order to have something to do. SOS command list:http://msdn.microsoft.com/en-us/library/bb190764.aspx .load DLLName!DLLName.load.loadby DLLName ModuleName 使用load和... 阅读全文
posted @ 2010-08-12 17:58 做个不善的人 阅读(861) 评论(0) 推荐(0)
Debugging WOW64
摘要:Applications running under WOW64 can be debugged two ways: Use an x86-hosted debugger such as NTSD, WinDbg, or Visual Studio. The 32-bit NTSD is installed to %systemroot%\syswow64 on retail installations. Note that x86 debuggers can be used to debug x86 code, but cannot be used to disassemble or se. 阅读全文
posted @ 2010-08-10 16:57 做个不善的人 阅读(1775) 评论(0) 推荐(0)
Hibernate vs. Sleep
摘要:Hibernate takes a snapshot of everything you got on RAM (including any windows and apps running) and saves it to a special hard disk file and then shuts the computer down, when you resume from hibernation the computer boots a bit faster than a normal power up bootup. This method does not consume any 阅读全文
posted @ 2010-08-01 11:17 做个不善的人 阅读(697) 评论(0) 推荐(0)