论坛


2009年3月5日 星期四

理顺 JavaScript (20) - String 中的正则表达式函数

万一| 万一的 Delphi 博客 |21:20:00

search: 找到返回位置; 找不到返回 -1var str, p, n; str = '1:abc;2:Abc;3:aBc;4:abC;5:ABc;6:aBC;7:AbC;8:ABC'; p = /abc/i; n = str.search(p); alert(n); //2 p = /abcde/i; n = str.search(p); alert(n); //-1 //这个函数和 RegExp.test 差不多, 不过 test ?..

DynamicSkinForm v. 10.30

CodeGear| CodeGear-CodeCentral Delphi |18:07:26

DynamicSkinForm VCL library help you to create applications with skins. Skins support for forms, menus, hints, many standard and non-standard original controls. Skins with many objects, effects help you to create standard and non-standard cool ap...

BusinessSkinForm v. 7.30

CodeGear| CodeGear-CodeCentral Delphi |18:02:49

BusinessSkinForm VCL library help you to create applications with skins support for forms, menus, hints, many standard and DB controls. You can create your skins with special editor. Develop your business applications with BusinessSkinForm VCL!Fea...

理顺 JavaScript (19) - 正则表达式对象 RegExp

万一| 万一的 Delphi 博客 |17:05:00

建立正则表达式的方法var p1 = new RegExp("abc", "igm"); var p2 = RegExp("abc", "igm"); var p3 = /abc/igm; //判断是否是正则表达式对象 alert(p1 instanceof RegExp); //true alert(p2 instanceof RegExp); //true alert(p3 instanceof RegExp); //true正则表?..

给 Edit 两个可选值 - 回复 "delphi学习中" 的问题

万一| 万一的 Delphi 博客 |16:23:00

问题来源:http://www.cnblogs.com/del/archive/2009/03/05/1345752.html#1468654procedure TForm1.Edit1Click(Sender: TObject); const arr: array[-1..0] of string = ('man', 'woman'); begin Edit1.Tag := not Edit1.Tag; Edit1.Text := arr[Edit1.Tag]; en...

开发Delphi.NET的控件

rarnu| 橙子的Delphi技术专区-delphi |15:46:00

Delphi.NET由于使用了.NET Framework并带上了许多.NET的特性,因此常规的VCL控件开发方法不适用在Delphi.NET上。本文即是讲述了如何为Delphi.NET开发控件。首先新建一个Delphi.NET的package,并添加一个单元,假设包名为Demo.dpk,单元名为untDemo.pas,则包内的代码...

带图标的提示栏Hint

幸福苹果| 幸福苹果-delphi |13:38:00

带图标的提示栏Hinthttp://www.codesky.net/article/doc/200308/2003081551287599.htmhttp://www.wiki.com.cn/wiki/Misc:Delphi%e7%9a%84Hint(2)     下面是一个Delphi单元的代码,它把程序图标放在提示栏窗口中:{--代码开始--}unit HintX;阅读...

Data Recovery USB Storage Media

delphi3000| delphi3000.com |12:00:00

Compact flash USB drive files revival application recovers formatted virus infected data lost from removable media storage device. Download removable media data recovery utility to restore damaged files lost due to system generated errors, logical...

Delphi流操作技巧总结

幸福苹果| 幸福苹果-delphi |11:50:00

Delphi流操作技巧总结作者:未知 来源:网上收集 加入时间:2005-11-11阅读全文类别:delphi编程 查看评论

DBGrid 应用全书

幸福苹果| 幸福苹果-delphi |11:49:00

2号房关文章:•阅读全文类别:delphi编程 查看评论

THintWindow的问题

幸福苹果| 幸福苹果-delphi |11:47:00

THintWindow的问题http://topic.csdn.net/t/20050204/16/3775893.html楼主lemon_wei(研究BT,做好P2P) 2005-02-04 16:43:21 在 Delphi / VCL组件开发及应用 提问Form上有一个TImage控件,上面显示了一幅图片,在TImage的OnMouseMove事件中我想判断光标位置是否在一?..

改造HINT的输出方式

幸福苹果| 幸福苹果-delphi |11:46:00

改造HINT的输出方式阅读全文类别:delphi编程 查看评论

在Delphi中定制Hint提示窗口

幸福苹果| 幸福苹果-delphi |11:37:00

在Delphi中定制Hint提示窗口朱丽莺在程序设计中,有时我们可能需要一种特定的提示窗口,但是系统提供的简单的提示窗口却不能满足需要,那么只能我们自己编写。本文介绍如何在阅读全文类别:delphi编程 查看评论

Delphi : 装扮改变Hint字体颜色:工具提示条

幸福苹果| 幸福苹果-delphi |11:36:00

装扮改变Hint字体颜色:工具提示条什么是工具提示条?在阅读全文类别:delphi编程 查看评论

Delphi遍历文件夹及子文件夹(转)

幸福苹果| 幸福苹果-delphi |11:32:00

Delphi遍历文件夹及子文件夹(转)http://hi.baidu.com/davis8/blog/item/684fcf01fdfb0904728da526.html遍历文件夹及子文件夹,实质上就是遍历二叉树。这个是别个的代码,看了觉得挺好的,就引过来。阅读全文类别:delphi编程 查看评论