摘要:
从Windows 2000开始,WMI(Windows 管理规范)就是Windows系统管理的重要组成部分。WMIC是Windows Management Instrumentation Command-line的简称,在WMIC出现之前,要从命令行访问WMI数据库或WMI名称空间不是一件容易的事情。现在,WMIC利用WMI强大的功能把系统管理扩展到了命令行。 一、什么是WMIC? W... 阅读全文
2006年5月26日 #
2006年5月25日 #
摘要:
修改控件style的方法 alantop修改控件风格 ( 一 ) CWnd* pWnd 为你控件的指针 ,LPCTSTR lpszClassName 是你控件的类名 , 比如编辑框是 "Edit", 按钮是 "Button", 详情可以使用 SPY++ 查看 . BOOL ModifyControlStyle(CWnd* pWnd,LPCTSTR lpszClassName,DWO... 阅读全文
摘要:
How to implement a CSplitterWnd into a CDialogBox in three easy steps without overriding any function, writing new classes, etc. Because I'm not a writer, this article will take you directly to the ... 阅读全文
摘要:
哈哈,找到交规考试自测网站了,http://www.shjtaq.com/exam/index.asp不错,做了三次,91分、96分、96分,看看明天咋样 阅读全文
2006年5月24日 #
摘要:
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow){ // TODO: Place code he... 阅读全文
摘要:
Intel CPU相关指令:LOCK这是一个指令前缀,在所对应的指令操作期间使此指令的目标操作数指定的存储区域锁定,以得到保护。XADD先交换两个操作数的值,再进行算术加法操作。多处理器安全,在80486及以上CPU中支持。CMPXCHG比较交换指令,第一操作数先和AL/AX/EAX比较,如果相等ZF置1,第二操作数赋给第一操作数,否则ZF清0,第一操作数赋给AL/AX/EAX。多处理器安全,在8... 阅读全文
2006年5月23日 #
摘要:
fedora5已经成功安装,呵呵,界面还是不错,本来想发个截图上来看看,但网络却没有设置好,无法上网。 阅读全文
摘要:
现在已经下载好了安装盘,等着安装呢,转载一篇安装的文档,hoho最近等KUbuntu的最新版等得烦透了,还是考虑先换个发行版试试看。本来因为曾经给我造成心理阴影,不是很想考虑Redhat的发行版,不过在网上查了大量资料之后,还是考虑安装一个Redhat Fedora Core 5先试试。介绍 机器的配置如下: 型号 HP Compaq Presario M2009AP CPU Celer... 阅读全文
摘要:
1、FindNextFile(), FindClose()2、SHGetFileInfo()3、PathFileExists()BOOL PathFileExists( LPCTSTR lpszPath ); 阅读全文
2006年5月22日 #
摘要:
如何让 MSN 与应用系统紧密集成起来? 阅读全文
2005年11月11日 #
摘要:
有关于字符串操作BSTR,CString,_bstr_t 相互转换操作的实际代码的讨论,高手真多啊 阅读全文
摘要:
com组件中传入和传出字符串的说明和例子,可以看看 阅读全文
摘要:
msdn:Chapter 6: Stringshttp://msdn.microsoft.com/library/en-us/dnw32dev/html/ora_apiprog6_topic1.asp Table of Contents The BSTRC-Style LPSTR and LPWSTR StringsString TerminologyTools for Exploring Str... 阅读全文
摘要:
不错,看看人家老外的文章,五星
Assumptions About the Reader
This article assumes that you are familiar with the basics of what XML is and what it can be used for. If you are new to XML, I would suggest reading one of the many fine tutorials on the subject first and then returning to this document.
Introducing the XML Document Object Model (DOM)
The XML Document Object Model, or DOM, is a very powerful and robust programmatic interface that not only enables you to programatically load and parse 阅读全文
摘要:
我可以给你例子,是关于_variant_t和BSTR的,大部分的数据类型已经被包括。暂时贴一点给你看:如何互相转换 BSTR 和 标准C字符串以下代码是用在我的一个Com组件中的,原理可以借鉴:STDMETHODIMP CCStr::Upper(BSTR inStr ,BSTR *outStr){/* 要 求: com接口传入的参数除了... 阅读全文
摘要:
Q:How to read attribute from a tag-------------------------------------------------------------------------------- 2000 Convertible 60,000 420 18.5 test mod... 阅读全文
摘要:
如何建立一个BSTR的字符串,以及该字符串转换到char*,最后删除BSTR的空间 阅读全文
摘要:
具体可以参考:// XMLNodeExerciser.cpp//// Locates a specific XML node in an XML document and inserts// a new child node, with an attribute, therein.//#include #include #include void main(){ // Start COM CoI... 阅读全文
摘要:
CoInitialize(NULL);
IXMLDOMDocumentPtr domPtr;
IXMLDOMNodePtr nodePtr;
IXMLDOMNodeList listPtr;
阅读全文