<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[iseekcode的专栏]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/iseekcode</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; iseekcode]]></copyright><item><title><![CDATA[DELPHI 中如何提升进程令牌]]></title><link>https://blog.csdn.net/iseekcode/article/details/5353994</link><guid>https://blog.csdn.net/iseekcode/article/details/5353994</guid><author>iseekcode</author><pubDate>Sun, 07 Mar 2010 16:16:00 +0800</pubDate><description><![CDATA[转:DELPHI 中如何提升进程令牌近一段时间在用DELPHI写个程序,当我写到一个结束其他进程的模块的时候有时不成功,那是因为其他进程,如病毒进程的权限高,通过常规的结束进程的函数行不通,要首先提高自身程序的权限,再结束其他进程在网上也看到了一些提升进程令牌的函数但都不怎么好用,最后我还是从一个黑客后门程序的源代码中提取出了一个好的提升进程令牌的函数,不敢独享,跟大家分享下 头部请加]]></description><category></category></item><item><title><![CDATA[Delphi 7事件的多处理机制]]></title><link>https://blog.csdn.net/iseekcode/article/details/5352709</link><guid>https://blog.csdn.net/iseekcode/article/details/5352709</guid><author>iseekcode</author><pubDate>Sat, 06 Mar 2010 21:15:00 +0800</pubDate><description><![CDATA[ Delphi 7事件的多处理机制Allen Tao2007-08-19  　　首先解释一下这个题目。在我使用Delphi 7的过程中发现，一个对象的事件只能被一个过程处理。如果多次给这个对象的事件赋给处理事件的过程，最后真正处理事件的将是最后赋值的那个过程。例如，有类TMyClass中定义了一个事件OnSomeFired，在类TClientClass中该类被实例化，它的事件被处理。如下所]]></description><category></category></item><item><title><![CDATA[libhaur笔记1：Usage]]></title><link>https://blog.csdn.net/iseekcode/article/details/5313028</link><guid>https://blog.csdn.net/iseekcode/article/details/5313028</guid><author>iseekcode</author><pubDate>Sat, 20 Feb 2010 16:08:00 +0800</pubDate><description><![CDATA[这里记录了几个重要函数。UsageInitialize document objectFirst, invoke HPDF_New() or HPDF_NewEx() to create an HPDF_Doc "document object". If user-defined memory management is needed, use HPDF_NewEx(). The do]]></description><category></category></item><item><title><![CDATA[主程序与DLL之间的全局变量问题]]></title><link>https://blog.csdn.net/iseekcode/article/details/5309712</link><guid>https://blog.csdn.net/iseekcode/article/details/5309712</guid><author>iseekcode</author><pubDate>Tue, 16 Feb 2010 16:00:00 +0800</pubDate><description><![CDATA[主程序与DLL之间的全局变量问题作者：杨茂峰Email:DinkySoft@163.com有几个朋友经常向我问题在DLL中怎么共用一个全局变量。比如像用户登陆后的用户名(UserName)...其实这个问题很简单。下面我把我的做法写出来大家一起分享。把共享的变量放在主程序里:UserName,....等等,在主程序里写两个函数Function CurUserName():PChar;b]]></description><category></category></item><item><title><![CDATA[css学习2]]></title><link>https://blog.csdn.net/iseekcode/article/details/5308316</link><guid>https://blog.csdn.net/iseekcode/article/details/5308316</guid><author>iseekcode</author><pubDate>Sat, 13 Feb 2010 18:19:00 +0800</pubDate><description><![CDATA[css学习1。一个类以.开头。例：.bigtext2。一个ID以#开头。例：#header3。定义一个层。例：#header {position: absolute; left: 32; top: 20}   在html中，     div必须给出id。4。overflow。检索或设置当对象的内容超过其指定高度及宽度时如何管理内容。所有对象的默认值是 visible ，除了 textarea 对象]]></description><category></category></item><item><title><![CDATA[Saving a RichEdit to a Metafile]]></title><link>https://blog.csdn.net/iseekcode/article/details/5306754</link><guid>https://blog.csdn.net/iseekcode/article/details/5306754</guid><author>iseekcode</author><pubDate>Thu, 11 Feb 2010 18:26:00 +0800</pubDate><description><![CDATA[IntroductionSometimes, you may want to store the contents of a rich edit control in a metafile.This article outlines an approach that stores this type of controls contents in enhanced metafiles, on]]></description><category></category></item><item><title><![CDATA[GradientFill found in 'msimg32.dll']]></title><link>https://blog.csdn.net/iseekcode/article/details/5306753</link><guid>https://blog.csdn.net/iseekcode/article/details/5306753</guid><author>iseekcode</author><pubDate>Thu, 11 Feb 2010 18:22:00 +0800</pubDate><description><![CDATA[GradientFill found in msimg32.dllThis Delphi source code shows how the GradientFill function can be used to add smooth shading to a triangle or rectangle. For a triangle call the GradientFill functi]]></description><category></category></item><item><title><![CDATA[CSS可以做3件事]]></title><link>https://blog.csdn.net/iseekcode/article/details/5306363</link><guid>https://blog.csdn.net/iseekcode/article/details/5306363</guid><author>iseekcode</author><pubDate>Thu, 11 Feb 2010 13:45:00 +0800</pubDate><description><![CDATA[CSS可以做3件事 1. 设置页面中的字体。2. 定义层及在页面中的位置。3. 修改HTML标记。 怎么看都觉得3件事有畸轻畸重感。字体与修改标记跟层可以相提并论吗？刚开始看《CSS与HTML精髓》一书，等着被释惑。 ]]></description><category></category></item><item><title><![CDATA[js学习笔记2]]></title><link>https://blog.csdn.net/iseekcode/article/details/5299226</link><guid>https://blog.csdn.net/iseekcode/article/details/5299226</guid><author>iseekcode</author><pubDate>Mon, 08 Feb 2010 16:57:00 +0800</pubDate><description><![CDATA[Task 32Calling Your JavaScript Code after the Page Has Loaded页面加载完成后调用JavaScript Codefunction hello() {window.alert(“Hello”);}// -->The page’s content. Task 43Check If Java Is Enabled with]]></description><category></category></item><item><title><![CDATA[IHTMLDocument Interface]]></title><link>https://blog.csdn.net/iseekcode/article/details/5298944</link><guid>https://blog.csdn.net/iseekcode/article/details/5298944</guid><author>iseekcode</author><pubDate>Mon, 08 Feb 2010 15:43:00 +0800</pubDate><description><![CDATA[IHTMLDocument InterfaceUsed to get information about a document, to examine and modify the HTML elements and text in the document, and to process related events. IHTMLDocument Members]]></description><category></category></item><item><title><![CDATA[IHTMLCurrentStyle Interface]]></title><link>https://blog.csdn.net/iseekcode/article/details/5298865</link><guid>https://blog.csdn.net/iseekcode/article/details/5298865</guid><author>iseekcode</author><pubDate>Mon, 08 Feb 2010 15:25:00 +0800</pubDate><description><![CDATA[IHTMLCurrentStyle InterfaceProvides the ability to programmatically access the style properties of the element.IHTMLCurrentStyle Members<a id="ctl00_MTCS_main_ctl01" onclick="funct]]></description><category></category></item><item><title><![CDATA[IHTMLCaret Interface]]></title><link>https://blog.csdn.net/iseekcode/article/details/5298834</link><guid>https://blog.csdn.net/iseekcode/article/details/5298834</guid><author>iseekcode</author><pubDate>Mon, 08 Feb 2010 15:16:00 +0800</pubDate><description><![CDATA[IHTMLCaret Interface惭愧，以前就不知道有Caret这个接口Provides methods that control the insertion point (caret) in the editor.IHTMLCaret Members<a id="ctl00_MTCS_main_ctl01" onclick="function onc]]></description><category></category></item><item><title><![CDATA[IHTMLBodyElement Interface]]></title><link>https://blog.csdn.net/iseekcode/article/details/5298754</link><guid>https://blog.csdn.net/iseekcode/article/details/5298754</guid><author>iseekcode</author><pubDate>Mon, 08 Feb 2010 14:55:00 +0800</pubDate><description><![CDATA[  IHTMLBodyElement Interface这个接口很重要Provides access to the <a id="ctl00_MTCS_main_ctl01" onclick="function onclick(){function onclick(){function onclick(){function onclick()]]></description><category></category></item><item><title><![CDATA[Interfaces and Scripting Objects]]></title><link>https://blog.csdn.net/iseekcode/article/details/5298728</link><guid>https://blog.csdn.net/iseekcode/article/details/5298728</guid><author>iseekcode</author><pubDate>Mon, 08 Feb 2010 14:51:00 +0800</pubDate><description><![CDATA[Interfaces and Scripting ObjectsLists the C/C++ object model interfaces, and identifies the scripting objects that match these interfaces most closely.Interface Object<a id="ctl00_]]></description><category></category></item><item><title><![CDATA[MSHTML Overviews]]></title><link>https://blog.csdn.net/iseekcode/article/details/5298714</link><guid>https://blog.csdn.net/iseekcode/article/details/5298714</guid><author>iseekcode</author><pubDate>Mon, 08 Feb 2010 14:47:00 +0800</pubDate><description><![CDATA[MSDNMSDN LibraryPlease WaitWeb DevelopmentPlease WaitInternet Explorer DevelopmentPlease WaitHosting and ReusePlease WaitMSHTML ReferencePlease WaitMSHTML Overviews]]></description><category></category></item><item><title><![CDATA[JavaScript in 10 Steps or Less]]></title><link>https://blog.csdn.net/iseekcode/article/details/5298062</link><guid>https://blog.csdn.net/iseekcode/article/details/5298062</guid><author>iseekcode</author><pubDate>Mon, 08 Feb 2010 11:18:00 +0800</pubDate><description><![CDATA[没有按别人的推荐，学什么圣经类的js书，而是随便挑了本《JavaScript in 10 Steps or Less》。花了3个小时，看了30个task。讲的非常浅显详细。虽然是E文，但很浅显易懂。 task31:Calling Functions from TagsOne of the benefits of JavaScript is to be able to t]]></description><category></category></item><item><title><![CDATA[一个德国人写的代码片段]]></title><link>https://blog.csdn.net/iseekcode/article/details/5295144</link><guid>https://blog.csdn.net/iseekcode/article/details/5295144</guid><author>iseekcode</author><pubDate>Sat, 06 Feb 2010 21:44:00 +0800</pubDate><description><![CDATA[uses   mshtml_tlb, ActiveX; function TriggerEvent(WB: TWebbrowser; Element: OleVariant; EventName: WideString): Boolean; var   Doc4: IHTMLDocument4;   Doc2: IHTMLDocument2;   EventObj: I]]></description><category></category></item><item><title><![CDATA[Create a temporary file name in Windows temp area ]]></title><link>https://blog.csdn.net/iseekcode/article/details/5284921</link><guid>https://blog.csdn.net/iseekcode/article/details/5284921</guid><author>iseekcode</author><pubDate>Wed, 03 Feb 2010 14:26:00 +0800</pubDate><description><![CDATA[Create a temporary file name in Windows temp area {******************************************************function skuGetTempFileName(prefix: string): string;Creates a temporary file name with th]]></description><category></category></item><item><title><![CDATA[Adding additional data members to forms]]></title><link>https://blog.csdn.net/iseekcode/article/details/5284835</link><guid>https://blog.csdn.net/iseekcode/article/details/5284835</guid><author>iseekcode</author><pubDate>Wed, 03 Feb 2010 14:04:00 +0800</pubDate><description><![CDATA[Adding additional data members to forms  Suppose you want to add a new data member to a form. You want to initialize it in the constructor. What you will add is a constructor with your own name and th]]></description><category></category></item><item><title><![CDATA[The magic of method pointers ]]></title><link>https://blog.csdn.net/iseekcode/article/details/5284830</link><guid>https://blog.csdn.net/iseekcode/article/details/5284830</guid><author>iseekcode</author><pubDate>Wed, 03 Feb 2010 14:03:00 +0800</pubDate><description><![CDATA[The magic of method pointers Date added/modified: 11 Nov 1999 You may not realize it but this is a concept at the core of Delphi technology and makes it truly amazing. You use it a]]></description><category></category></item></channel></rss>