资源列表

« 1 2 ... .45 .46 .47 .48 .49 250.51 .52 .53 .54 .55 ... 2387 »

[Dephi控件源码urladdresschech

说明:Delphi判断网址是否存在,检查输入的URL网址是否可以打开,将使用Delphi中的TNMHTTP控件的head方法来检查网址是否有效。从运行截图你可以看出,程序会返回不同的结果,比如是否正确解析地址、是否能够连接到主机、是否存在这个页面等,以此几方面来综合判断,该网址是否可以正确被访问。-The Delphi judge the existence of Web site, check whether the input of th
<wpudn46> 在 2024-10-02 上传 | 大小:6144 | 下载:0

[Dephi控件源码gdbhcxdelphi

说明:Delphi演示哥德巴赫猜想理论,若不知道哥德巴赫猜想的,可百度下,概念就不解释了,本例子主要内含是表现哥德巴赫猜想算法的结果,用代码来实现,需要研究的请下载源码包吧。-Delphi demonstrates the Goldbach conjecture, if do not know Goldbach s conjecture, but Baidu, concept can not explain, this example is
<wpudn49> 在 2024-10-02 上传 | 大小:6144 | 下载:0

[Dephi控件源码delphimata

说明:Delphi生成数字斜塔,也就是倒金字塔算法,前一排的数字个数依次比下一行少一个,整体排下来就像是一个倒金字塔一样,研究数字算法的一个Dlephi简单例子-Delphi to generate the digital tower, also is the inverted Pyramid algorithm, the number of digits of a row are less than the next one, the wh
<wpudn49> 在 2024-10-02 上传 | 大小:6144 | 下载:0

[Dephi控件源码transformdelphi

说明:又一半透明的Delphi窗口实例源码,让窗体透明可以看到下面的内容,学习窗口编程时候的一个小例子,对新手来说是相当实用的,希望大家喜欢哦。-And half of the Delphi instance transparent source, make transparent window can see in the following content, learning a small example window programm
<wpudn49> 在 2024-10-02 上传 | 大小:6144 | 下载:0

[Dephi控件源码leonardofibonacci

说明:Delphi裴波纳契数列求和实例,请输入要计算数字的前多少位。斐波那契数列,又称黄金分割数列,指的是这样一个数列:0、1、1、2、3、5、8、13、21、……在数学上,斐波纳契数列以如下被以递归的方法定义:F0=0,F1=1,Fn=F(n-1)+F(n-2)(n>=2,n∈N*)在现代物理、准晶体结构、化学等领域,斐波纳契数列都有直接的应用。本例用Delphi来演示斐波那契数列的简单应用。-Delphi Fibonacci num
<wpudn50> 在 2024-10-02 上传 | 大小:6144 | 下载:0

[Dephi控件源码zharuorder

说明:Delphi直接插入法排序示例,插入法数组排序,示例将显示一组没有经过排序的数组,看上去比较混乱无规律,之后显示了排序后的数组,这下看着清爽了,有图有真相,你看出猫腻了吗?-Delphi direct insertion sort example, insertion sort the array, the example displays a group without a sorted array, looks confused w
<wpudn50> 在 2024-10-02 上传 | 大小:6144 | 下载:0

[Dephi控件源码getmathlastday

说明:Delphi获取某月份的最后一天是多少,做成了窗体程序,可视化操作,用起来很方便。你只需指定某个日期就可以了,程序自动计算得到该月份的最后一天是多少-What is the Delphi for the last day of a month, a window procedure, visual operation, easy to use. You only need to specify a date on it, how muc
<wpudn50> 在 2024-10-02 上传 | 大小:6144 | 下载:0

[Dephi控件源码zuixiaogbs

说明:Delphi求最小公倍数,一个数学算法实例,求两个数的最小公倍数,你可在指定文本框中定义好数值1和数值2,然后点击“计算”按钮,即可求出两个数的最小公倍数是多少。-Delphi LCM, a mathematical algorithm for example, LCM for the number two, you can be specified in the text box to define a value of 1 and
<wpudn52> 在 2024-10-02 上传 | 大小:6144 | 下载:0

[Dephi控件源码Delphidatestring

说明:Delphi如何将日期转换成字符串呢?Delphi新手可参考的一个代码,源代码在Delphi中可完美编译运行,如示例截图所示。程序将借助Excel2000中的相关组件实现。-How Delphi the date into a string? A code Delphi novice can refer to, the source code can be compiled to run in Delphi, such as the e
<wpudn52> 在 2024-10-02 上传 | 大小:6144 | 下载:0

[Dephi控件源码delphiformdemos

说明:Delphi窗口置顶实例、窗体透明,禁止使用最大化按钮和最小化按钮的编程实例,打开编译的程序后,你会发现程序的窗体是半透明状态,而且可以始终显示在最顶层,不会被遮挡,通过窗口中的几个控制按钮,还可以实现最小化最大化按钮失效、读取图标等功能,对新手来说,是比较实用的窗口编程例子。-Delphi window top case, transparent window, the prohibition of the use of the ma
<wpudn53> 在 2024-10-02 上传 | 大小:6144 | 下载:0

[Dephi控件源码BlockRead

说明:delphi BlockRead用法的源码实例,blockread 函数可以读一个或多个记录到变量中,示例为你设计了一个按钮,点击这个按钮可以选择文件,选择文件后你可以看到复制了多少bytes到变量中,还不错吧,挺简单的例子了。-Delphi BlockRead use source code examples, the blockread function can read one or more records to a varia
<wpudn56> 在 2024-10-02 上传 | 大小:6144 | 下载:0

[Dephi控件源码delphiaddmenus

说明:Delphi在系统默认的窗口菜单中添加自定义菜单项,在窗体标题栏的右键菜单中添加自定义菜单,这个源码功能主要是演示这一功能如何实现,超简单,面向Delphi的基础学者。-Delphi add custom menu item in the window menu by default system, add a custom menu in the window title bar and right-click menu, the s
<gpudn70> 在 2024-10-02 上传 | 大小:6144 | 下载:0
« 1 2 ... .45 .46 .47 .48 .49 250.51 .52 .53 .54 .55 ... 2387 »

源码中国 www.ymcn.org