2011年5月3日 星期二
ActionScript 3.0 记要(1)
万一| 万一的 Delphi 博客 |13:26:00
近期要做的东西既需要运行于网络又需要运行于本地, 并要尽量多地兼容各种平台(包括手机平台).大概了解了 PhoneGap、HTML5、Adobe AIR、Flash、SilverLight、uniGUI、Qt, 发现还是老牌的 Flash 更适合需求.因需全部用代码完成界面与逻辑, 所以主要的学习任务是 Action...
ActionScript 3.0 记要(1): 基本语法
万一| 万一的 Delphi 博客 |13:26:00
近期要做的东西既需要运行于网络又需要运行于本地, 并要尽量多地兼容各种平台(包括手机平台).大概了解了 PhoneGap、HTML5、Adobe AIR、Flash、SilverLight、uniGUI、Qt, 发现还是老牌的 Flash 更适合需求.因需全部用代码完成界面与逻辑, 所以主要的学习任务是 Action...
Cindy components pack v4.13
Embarcadero| CodeCentral Delphi Submissions |04:24:17
Package with more than 40 components for all delphi versions to build windows applications. - Gradient controls (buttons, speedbuttons, panels) with features like colored bevels, wallpaper, shadowText. TcyCommunicate and TcyCommRoomConnector allow...
Habari RabbitMQ Client - AMQP message broker client library
Embarcadero| CodeCentral Delphi Submissions |03:24:38
Habari RabbitQ Client is a library for Delphi(r) and Free Pascal which provides easy access to the RabbitMQ open source AMQP message broker. With this library, Delphi developers can build integrated solutions, using the peer-to-peer or the publish...
2011年5月2日 星期一
彩信MMS PDU 的解码[转]
小城太阳| 网络天空vistra-Delphi |20:09:00
前一时间折腾了一下手机方面的开发,用的是NOKIA智能手机,NOKIA网站有一个很方便的开发包Nokia_PC_Connectivity_API_3.2。这个开发包带有VB.NET,C#,VC的文件系统,设备管理,内容存取的开发例子。试了试可以正常收发短信,但彩信只可以看?..
Still haven’t migrated your Delphi apps to a Unicode world?
David I| Sip from the Firehose |20:00:42
If you still haven’t moved your Delphi applications into the world of <a href="http://unicode.org/">Unicode</a> strings, you should definitely check out?Cary Jensen’s Unicode blog post, webinar replay and white paper: ...
2011年4月29日 星期五
InterBase XE Update 2 is now available for download
David I| Sip from the Firehose |22:59:39
The InterBase team has announced the general availability of InterBase XE Update 2 (version 10.0.2) maintenance release for Windows and Linux. This release makes InterBase even more stable and ready to address the needs of both 32-bit Editions (Wi...
Html5 之 Canvas
万一| 万一的 Delphi 博客 |22:52:00
标签:<canvas id="myCanvas" width="200" height="200" style="border:1px solid #c3c3c3;">不支持提示</canvas>相关接口:// interface CanvasRenderingContext2D { readonly attribute HTMLCanvasElement canvas; void save(); void restore()...
Delphi动态调用DLL中的MdiChild---暨DLL窗体重用技术
小宇飞刀| 小宇飞刀的博客-delphi |11:50:35
这是一个调用DLL中MdiChildForm的例子,改成其他窗体类型,一样能用。//DLL文件library myabout; uses SysUtils, Classes, Forms, Windows, uAbout in 'uAbout.pas' {About}; {$R *.R...
Building and Tuning SQL Server Applications
Embarcadero| EDN Delphi Feed |09:30:12
2011年4月28日 星期四
一个绘制虚线的非常规函数(常规方法,打印机上绘制不出虚线)
不得闲| 得闲笔记 |11:25:00
昨天碰到一个灰常的,郁闷之极的问题!在打印机上,竟然使用Delphi的常规方式绘制虚线的时候,竟然显示的始终是实线。我们常规绘制虚线的方法很简单的,就是指定Canvas的PenStyle为虚线模式就可以了。代码简单了Canvas.pen.style := psdot;canvas.pen....
2011年4月27日 星期三
DLL信息共享/传递参数【转】
小宇飞刀| 小宇飞刀的博客-delphi |21:32:33
作者:杨茂峰Email:DinkySoft@163.com有几个朋友经常向我问题在DLL中怎么共用一个全局变量。比如像用户登陆后的用户名(UserName)...其实这个问题很简单。下面我把我的做法写出来大家一起分享。//把共享的变量放在主程序里:UserName,....等等,在主程序里写两个函数 fu...
DLL信息共享/传递参数--【暨对网上一帖的补充及解答】
小宇飞刀| 小宇飞刀的博客-delphi |21:32:33
问题原帖为:http://www.2ccc.com/article.asp?articleid=1325[有几个朋友经常向我问题在DLL中怎么共用一个全局变量。比如像用户登录后的用户名(UserName)...其实这个问题很简单。下面我把我的做法写出来大家一起分享。.....]此帖有些内容不全且无Demo,导致部分网友...
2011年4月26日 星期二
解析 png 的十六进制图片流的函数 - 回复 "黑人" 的问题
万一| 万一的 Delphi 博客 |22:53:00
问题来源:http://www.cnblogs.com/del/archive/2010/04/24/1719631.html#2079634使用下面的 Hex2Png() 函数解析黑人给的数据,结果是一个 93396 的验证码图片。uses pngimage; {从 png 图片到十六进制字符串} function Png2Hex(png: TPngImage): string; var str...
解析 png 图片的十六进制字符流的函数 - 回复 "黑人" 的问题
万一| 万一的 Delphi 博客 |22:53:00
问题来源:http://www.cnblogs.com/del/archive/2010/04/24/1719631.html#2079634使用下面的 Hex2Png() 函数解析黑人给的数据,结果是一个 93396 的验证码图片。uses pngimage; {从 png 图片到十六进制字符串} function Png2Hex(png: TPngImage): string; var str...





冀公网安备 13098202000212号