<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>数码鹭岛论坛 - Delphi编程</title>
    <link>https://www.clore.net/forum/forum-77-1.html</link>
    <description>Latest 20 threads of Delphi编程</description>
    <copyright>Copyright(C) 数码鹭岛论坛</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Fri, 25 Sep 2026 23:49:35 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.clore.net/forum/static/image/common/logo_88_31.gif</url>
      <title>数码鹭岛论坛</title>
      <link>https://www.clore.net/forum/</link>
    </image>
    <item>
      <title>用Delphi编写DelTree程序</title>
      <link>https://www.clore.net/forum/thread-7028-1-1.html</link>
      <description><![CDATA[　　Delphi提供了关于文件操作的许多函数，其中关于目录操作的有目录的创建与删除、设置当前目录、获取当前目录等。目录的删除有函数（Function）RemoveDir和过程（Procedure）RmDir，但它们都只能删除空目录，对于非空目录则不能删除。要实现删除整个目录树（DelTree ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 13 Nov 2005 16:09:38 +0000</pubDate>
    </item>
    <item>
      <title>Delphi里如何删除指定的文件夹和文件</title>
      <link>https://www.clore.net/forum/thread-6980-1-1.html</link>
      <description><![CDATA[操作系统: win2000 
   编程工具: delphi5 
   问题: 如何删除指定的文件夹和文件? 

    删除目录可以使用RemoveDir或者RmDir。 
    RemoveDir例子： 
     // Create a new directory in the current directory 
     if CreateDir(\'TestDir\') 
     then ShowMessa ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Tue, 01 Nov 2005 16:13:12 +0000</pubDate>
    </item>
    <item>
      <title>Delphi 7.0常用函数速查手册</title>
      <link>https://www.clore.net/forum/thread-6977-1-1.html</link>
      <description><![CDATA[函数由一句或多句代码组成，可以实现某个特定的功能。使用函数可以使代码更加易读、易懂，加快编程速度及减少重复代码。过程与函数类似，过程与函数最重要的区别在于，过程没有返回值，而函数能有返回值。

　　在Delphi 7.0中，已为我们定义好了非常多的函数，大致分 ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Tue, 01 Nov 2005 16:05:36 +0000</pubDate>
    </item>
    <item>
      <title>Delphi网络函数</title>
      <link>https://www.clore.net/forum/thread-6976-1-1.html</link>
      <description><![CDATA[unit net;

interface
  uses
      sysutils
     ,windows
     ,dialogs
     ,winsock
     ,classes
     ,comobj
     ,wininet;

  //得到本机的局域网ip地址
  function getlocalip(var localip:string): boolean;
  //通过ip返回机器名
  function getnamebyi ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Tue, 01 Nov 2005 15:59:25 +0000</pubDate>
    </item>
    <item>
      <title>Delphi6函数大全</title>
      <link>https://www.clore.net/forum/thread-6975-1-1.html</link>
      <description><![CDATA[Delphi6函数大全（1）　 
 

首部 function AnsiResemblesText(const AText, AOther: string): Boolean; $[StrUtils.pas
功能 返回两个字符串是否相似
说明 ANSI(American National Standards Institute)美国国家标准协会;不区分大小写
参考 function StrUtils.Soundex ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Tue, 01 Nov 2005 15:55:40 +0000</pubDate>
    </item>
    <item>
      <title>Delphi常用函数应用</title>
      <link>https://www.clore.net/forum/thread-6974-1-1.html</link>
      <description><![CDATA[得到WINDOWS的SYSTEM路径: 
   方法:
            var
                 MySysPath : PCHAR ;
            begin
                    GetMem(MySysPath,255);
                    GetSystemDirectory(MySysPath,255);
            end;
   注:MySysPath为SYSTEM路径
 ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Tue, 01 Nov 2005 15:50:35 +0000</pubDate>
    </item>
    <item>
      <title>用Delphi编程时如何利用线程</title>
      <link>https://www.clore.net/forum/thread-6972-1-1.html</link>
      <description><![CDATA[重 庆 邮 电 学 院 计 算 机 系 综 合 微 机 室

马 英 杰 

---- Windows 95 是Microsoft 公 司 的 第 一 个 真 
正 的 多 任 务 操 作 系 统。 在 每 一 时 刻 可 以
有 多 个 进 程 同 时 工 作， 而 每 一 个 进 程 又 包 含 有 多 个 线 
程。 但 只 有 一 个 处  ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 30 Oct 2005 16:25:59 +0000</pubDate>
    </item>
    <item>
      <title>Delphi编程技巧集锦</title>
      <link>https://www.clore.net/forum/thread-6971-1-1.html</link>
      <description><![CDATA[◇[DELPHI]网络邻居复制文件 
uses shellapi; 
copyfile(pchar(\'newfile.txt\'),pchar(\'//computername/direction/targer.txt\'),false); 

◇[DELPHI]产生鼠标拖动效果 
通过MouseMove事件、DragOver事件、EndDrag事件实现，例如在PANEL上的LABEL： 
var xpanel,ypanel, ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 30 Oct 2005 16:18:33 +0000</pubDate>
    </item>
    <item>
      <title>如何在程序中使用自己的库单元</title>
      <link>https://www.clore.net/forum/thread-6970-1-1.html</link>
      <description><![CDATA[用过VB的人都知道，可以在工程中增加类模快来存放共用方法，而在delphi中如何也能与VB一样存放自己的类呢？通过下面的讲解，我想你一定会有所收获的。
一，在工程中增加一个库单元
单击菜单的顺序为 File -&gt; New -&gt; Unit 这样就为你的工程增加了一个库单元。新增加的库 ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 30 Oct 2005 16:13:37 +0000</pubDate>
    </item>
    <item>
      <title>用Delphi编制可自动升级程序</title>
      <link>https://www.clore.net/forum/thread-6969-1-1.html</link>
      <description><![CDATA[在编制了一个应用程序后的维护阶段，我们会面临给应用程序升级的工作.无疑，手工升级的工作是十分繁琐的，你可能会需要到用户的机器上去更新文件.可是，如果能编一个自动升级程序，放在网络上，让用户下载，只需执行一下就完成升级工作，不是很方便吗？其实，用Delphi ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 30 Oct 2005 16:10:34 +0000</pubDate>
    </item>
    <item>
      <title>通过实例看VCL组件开发全过程</title>
      <link>https://www.clore.net/forum/thread-6968-1-1.html</link>
      <description><![CDATA[这篇文章算是对我前段时间学习的一个学习总结，以及对自己学习过程的一个回顾。本文通过一个简单的例子来尽可能的展示VCL组件开发的各个方面，本文针对即将学习组件开发的初学者，如果你已经熟悉组件开发或认为本文内容过于基础简单，那么本文对你毫无用处。阅读本文， ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 30 Oct 2005 16:05:45 +0000</pubDate>
    </item>
    <item>
      <title>基于Delphi的接口编程入门</title>
      <link>https://www.clore.net/forum/thread-6967-1-1.html</link>
      <description><![CDATA[　　为什么使用接口？

　　举个例子好了：有这样一个卖票服务，电影院可以卖票，歌剧院可以卖票，客运站也可以卖票，那么我们是否需要把电影院、、歌剧院和客运站都设计成一个类架构以提供卖票服务？要知道，连经理人都可以卖票，很显然不适合把经理人也包括到卖票服 ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 30 Oct 2005 16:04:18 +0000</pubDate>
    </item>
    <item>
      <title>如何用Delphi编写自己的可视化控件</title>
      <link>https://www.clore.net/forum/thread-6966-1-1.html</link>
      <description><![CDATA[可视化控件(Visual Component)实际上就是一个类(class)，要编写一个类，可以直接在*.pas文件中编写。但是要编写控件，则必须使用包(package)。从File菜单中选择New，新建一个Package，这就是存放和安装控件用的包。然后单击Package窗口中的Add按钮，添加一个元件(Unit) ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 30 Oct 2005 16:02:49 +0000</pubDate>
    </item>
    <item>
      <title>用Delphi制作以浏览器为界面的应用程序</title>
      <link>https://www.clore.net/forum/thread-6965-1-1.html</link>
      <description><![CDATA[　　很多人想把自己编写的应用程序做成以浏览器为界面，通过打开浏览器的方式来使用应用程序，其实在delphi中实现起来很简单，我们以用delphi6.0为例把实现的完整步骤写出如下：

　　1、选择\&quot;file\\new\\other\&quot;于new items对话框中选择activex选项，在其中选择建立activ ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 30 Oct 2005 16:01:17 +0000</pubDate>
    </item>
    <item>
      <title>窗体的建立时机及缓冲的思想在ini文件中的应用</title>
      <link>https://www.clore.net/forum/thread-6964-1-1.html</link>
      <description><![CDATA[1 窗体建立的时机问题
由于窗体属于比较占系统内存的对象，所以在应用程序中何时建立窗体就变得比较重要。
窗体的建立时机有一下几种：
（1）、在主窗体建立时自动建立窗体
（2）、在需要的时候才建立窗体，然后窗体关闭时也不销毁窗体
（3）、在需要的时候才建立窗体 ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 30 Oct 2005 15:59:16 +0000</pubDate>
    </item>
    <item>
      <title>Delphi面向对象编程的20条规则</title>
      <link>https://www.clore.net/forum/thread-6963-1-1.html</link>
      <description><![CDATA[前言 
大多数Delphi程序员都像使用Visual Basic 那样使用他们手头上开发工具，而丝毫没有意识到Delphi的强大功能，更谈不上使用这些功能了。(写到这里，编辑惶恐的举起了手，怎么可能呢？)Delphi和Visual Basic不同，Delphi完全建立在面向对象结构上,这不仅影响到VCL的 ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 30 Oct 2005 15:56:19 +0000</pubDate>
    </item>
    <item>
      <title>delphi函数参考手册</title>
      <link>https://www.clore.net/forum/thread-6962-1-1.html</link>
      <description><![CDATA[名称 类型 说明 

abort 函数 引起放弃的意外处理 

abs 函数 绝对值函数 

addexitproc 函数 将一过程添加到运行时库的结束过程表中 

addr 函数 返回指定对象的地址 

adjustlinebreaks 函数 将给定字符串的行分隔符调整为cr/lf序列 

align 属性 使控件位于窗口某部 ...]]></description>
      <category>Delphi编程</category>
      <author>翔子</author>
      <pubDate>Sun, 30 Oct 2005 15:53:58 +0000</pubDate>
    </item>
  </channel>
</rss>