论坛


2009年2月27日 星期五

理顺 JavaScript (11) - 数组

万一| 万一的 Delphi 博客 |22:24:00

数组直接量var arr; arr = ['AA', 'BB', 'CC']; alert(arr.toLocaleString()); //AA, BB, CC arr = [11, 22, 33]; alert(arr.toLocaleString()); //11.00, 22.00, 33.00 /* 数组元素可以是任意类型, 包括数组本身 */ arr = ['AA', 'BB', 123]; alert(arr.toLocaleS...

用 API 提取、写入指定网站的 Cookie - 回复 "bangrj" 的问题

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

问题来源:http://www.cnblogs.com/del/archive/2009/02/27/1399526.html#1463307本例效果图:代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TF...

剪贴板的编程

幸福苹果| 幸福苹果-delphi |20:08:00

http://hi.baidu.com/etimeman/blog/item/506562348662dd3d5ab5f534.htmlhttp://www.delphibbs.com/keylife/iblog_show.asp?xid=25056http://www.96pc.com/Bc/Delphi/5385.htmldelphi 如何注册剪切板的格式阅读全文类别:delphi编程 查看评论

Latin America Delphi Con I - Actualizador por Web services

CodeGear| CodeGear-CodeCentral Delphi |16:43:42

Actualizador de aplicaciones controlado por un web service usado como ejemplo de la presentacion "Integracion de aplicaciones a treves de web services con Delphi" Usa Interbase, Delphi 2009 (w32) y el Web service esta compilado c...

理顺 JavaScript (10) - Math 类

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

Math 和其他类不同, 它没有建立方法(不能这样使用: new Math()), 它的所有方法都是静态的(都得挂名调用).Math.abs; //绝对值 Math.max; //两个数中的大者 Math.min; //两个数中的小者 Math.random; //随机数 Math.round; //四舍五入 Math.ceil; //上舍入...

理顺 JavaScript (9) - Date 类

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

常用计时: UTC(世界标准时间)、GMT(格林威治时间)、本地时间.相关函数纵览//全局函数 Date //Date 类的静态方法 Date.parse Date.UTC //Date 对象的建立方法 new Date() new Date(毫秒数) new Date(标准时间格式字符串) new Date(年, 月, 日, 时, 分, 秒, 毫秒) /...

获取指定地址的 JPG 图片 - 回复 "bangrj" 的问题

万一| 万一的 Delphi 博客 |14:12:00

问题来源:http://www.cnblogs.com/del/archive/2009/02/27/1370907.html#1463071本例效果图:代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, IdBaseComponent, IdComponent, IdTCP...

AlphaControls Lite Edition v6.13

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

AlphaControls Lite Edition is a part of the AlphaControls package which can work without any limitations in Delphi 5/6/7/2005/2006/2007/2009 and C++ Builder 6/2006/2007/2009 under Windows XP and newer. By using these components you can see the bas...

Creating a Delphi Form from a String (Form’s Name)

About.com| About.com Delphi Programming |02:00:25

Delphi Forms :: Suppose you have a bunch of forms in your application (like you probably do). Of course, much of those forms get created dynamically at run time...