2018年9月14日

Delphi IEEE 754 实现

摘要: function IEEE754DToF(const AData: DWORD): Single;var S, M, E: Integer;begin try S:= (AData and $80000000) shr 31; E:= (AData and $7F800000) shr 23; M: 阅读全文

posted @ 2018-09-14 14:11 object pascal 阅读(342) 评论(0) 推荐(0) 编辑

2016年9月6日

delphi7 安装delphi 5 delphi 6控件

摘要: delphi7默认没有安装。需要手动安装。 具体位置:delphi7/bin/dclsockets70.bpl。 安装方法如下: Component->Install Packages->Add->/Bin/dclsockets70.bpl->OK 经常有朋友提这样的问题,“我原来在delphi5或 阅读全文

posted @ 2016-09-06 15:18 object pascal 阅读(399) 评论(0) 推荐(0) 编辑

2012年7月27日

xp系统清理方法

摘要: 在电脑屏幕的左下角按“开始→程序→附件→记事本”,把下面的文字复制进去,点“另存为”,路径选“桌面”,保存类型为“所有文件”,文件名为“清除系统LJ.bat”,就完成了。记住后缀名一定要是.bat,ok!你的垃圾清除器就这样制作成功了! 双击它就能很快地清理垃圾文件,大约一分钟不到。@echo off echo 正在清除系统垃圾文件,请稍等...... del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive%\*._mp del /f /s /q %systemdrive%\*.log del /f /s /q %systemdri 阅读全文

posted @ 2012-07-27 15:20 object pascal 阅读(203) 评论(0) 推荐(0) 编辑

2012年7月25日

Delphi 数据类型列表

摘要: 分类范围字节备注简单类型序数整数Integer-2147483648 .. 21474836474有符号32位Cardinal0 .. 42949672954无符号32位Shortint-128 .. 1271有符号8位Smallint-32768 .. 327672有符号16位Longint-2147483648 .. 21474836474有符号32位Int64-263 .. 2638有符号64位Byte0 .. 2551无符号8位Word0 .. 655352无符号16位Longword0 .. 42949672954无符号32位字符AnsiChar(Char)ANSI字符集8位Wide 阅读全文

posted @ 2012-07-25 20:56 object pascal 阅读(155) 评论(0) 推荐(0) 编辑

导航