2010年5月8日 星期六
Habari HornetQ Client 1.0b5 - for JBoss HornetQ message broker
CodeGear| CodeGear-CodeCentral Delphi |04:54:09
Habari HornetQ Client is a library for Delphi(tm) and Free Pascal which provides easy access to the JBoss HornetQ open source Message Broker. With this library, Delphi developers can build integrated solutions, using the peer-to-peer or the publis...
2010年5月7日 星期五
Delphi 中 "位" 的使用(3) - TBits
万一| 万一的 Delphi 博客 |22:58:00
阅读: 47 评论: 0 作者:万一发表于 2010-05-07 22:58原文链接TBits 直接继承自 TObject, 它只扩充出 2 个属性、1 个方法:TBits.Size //需要使用的 "位" 数 TBits.Bits[] //默认的数组属性, 用于读写每个 "位"; 用 True 表示 1, 用 False 表示 0 TBits.OpenBit //...
Delphi 中 "位" 的使用(2) - 集合
万一| 万一的 Delphi 博客 |22:57:00
阅读: 33 评论: 0 作者:万一发表于 2010-05-07 22:57原文链接集合中的每个元素其实只占一个二进制位, 不足 8 个元素的集合只需要 1 个字节.先观察集合的大小:Type TSet1 = set of (a1,a2,a3,a4,a5,a6,a7,a8); {刚好对应一个字节的 8 个位} TSet2 = set of (b1...
Delphi 中 "位" 的使用(1) - 原始的二进制
万一| 万一的 Delphi 博客 |22:56:00
阅读: 21 评论: 0 作者:万一发表于 2010-05-07 22:56原文链接本话题涉及: 1、常用二进制的位操作; 2、集合与 "位" 的关系; 3、TBits 类.这里的 "位" 是指二进制位, 譬如一个 Byte 有 8 个位、一个 Integer 有 32 个位.在 C 语言中可以定义由 "位" 字段构成的结构体, ...
稳定高效的IOCP控件
DELPHI盒子| Delphi盒子 |16:05:00
初学IOCP(windows完成端口)编程时,遇到很多问题和挫折,也在网上找过很多他人的代码,但是这些代码要么不稳定,要么难以使用,所以决定自己动手。在N次查阅MSDN有关章节,几度大改源代码,以及无数次的调试之后,终于有了目前这个比较稳定高效的的IOCP代码,我将?..
DataSnap, SOAP and Web Services
CodeGear| CodeGear-CodeCentral Delphi |09:43:34
This application shows how to use SOAP with DataSnap to change data over the Internet, integrating for example Companies and Subsidiaries, without to use Web based technologies as ASP.NET or VCL for the Web. With this application you can use tradi...
2010年5月6日 星期四
知道双字节码, 如何获取汉字 - 回复 "pinezhou" 的问题
万一| 万一的 Delphi 博客 |22:08:00
阅读: 152 评论: 6 作者:万一发表于 2010-05-06 22:08原文链接问题来源:http://www.cnblogs.com/del/archive/2008/09/05/1284923.html#1818187{查看同一字符串的双字节码和 UniCode 码} procedure TForm1.Button1Click(Sender: TObject); var str1: AnsiString; ...
远程数据库对象 V1.80(CDS_uniDAC)版
DELPHI盒子| Delphi盒子 |16:05:00
为了继续支持我喜欢的DELPHI和可爱的盒子,特发布方便好用的远程数据库对象最新版本:) 用DELPHI的朋友少不了要和数据库打交道,一般小程序都使用ACCESS或者SQLLITE做数据库感觉十分方便,不用装数据库服务端,客户端不用单独装驱动, 发布程序时直接目录一拷贝就完...
更改mp3对应的lrc文件名
DELPHI盒子| Delphi盒子 |16:05:00
只是简单的一种模式 若想其他模式自己改源码 方便更改mp3对应的lrc文件名
Delphi ZIP / UNZIP (Compression) Components
About.com| About.com Delphi Programming |03:00:05
2010年5月4日 星期二
Localization Nightmares…or why having all languages in one version of RAD Studio is just awesome
admin| flickdotnet.de |17:19:47
Let me give you an example why the decision by Embarcadero to deliver all languages with the very same DVD or download is one of the most overlooked features. I am a big big fan of strategy games on the PC platform. Thus, I bought Anno 1404, defin...
理解浮点数的储存规则
万一| 万一的 Delphi 博客 |15:10:00
阅读: 16 评论: 0 作者:万一发表于 2010-05-04 15:10原文链接早就想知道浮点数的存储原理; 从 Single 开始理解.Single(单精度浮点数 - 32 位):sef1823如浮点数: 13.625 (1*101+ 3*100+ 6*10-1+ 2*10-2+ 5*10-3)其二进制表示是: 1101.101(1*23+ 1*22+ 0*21+ 1*20+ 1*2...
Delphi 组件开发教程指南(5)实现类QQ的编辑框
不得闲| 得闲笔记 |10:55:00
阅读: 83 评论: 1 作者:不得闲发表于 2010-05-04 10:55原文链接距离上一篇系列的文章有一段时间了,假终于是放完了!现在咱继续在TEdit上做文章,同时来熟悉某些Windows的系统消息。现在我讲的是如何实现一个类似QQ编辑框的样式。 再讲解之前,先回馈前几篇文章有些?..
Server Side Web Scripting / Development With Delphi
About.com| About.com Delphi Programming |05:00:03
2010年5月3日 星期一
Int64 与 Currency
万一| 万一的 Delphi 博客 |23:54:00
阅读: 56 评论: 0 作者:万一发表于 2010-05-03 23:54原文链接procedure TForm1.Button1Click(Sender: TObject); var c: Currency; i: Int64 absolute c; begin c := 1234.5678; ShowMessage(IntToStr(i)); //12345678 end; procedure TForm1.Button2Click(S...





冀公网安备 13098202000212号