摘要:
tnetimage类
源代码
// unetimge .pas 屏幕图像相关操作
{{
作者:蛐蛐
时间:2004.5.26
}
unit unetimage;
interface
uses
classes, windows, graphics, forms, jpeg, sysutils,
idtcpserver, idtcpclient,unetcomm......
摘要:
标题:delphi 对象模型学习笔记关键词:delphi 对象模型 作者:dreamtheater难度:普通[] 中等[x] 高级[]http://dreamtheater.yeah.nete-mail:notexpad@163.com完成日期:2004年08月21日
摘要 borland object pascal 对象模型(现在已经正是命名为 delphi 语言)与其他 oop 语言一样,......
生成BIG5字符集所有字符
program genbig5code;
{$apptype console}
uses
sysutils;
var
i, j: byte;
mbig5file: textfile;
begin
assignfile(mbig5file, c:\big5code.bin);
rewrite(mbig5file);
//big5字符集范围: 高位$a1~$fe, 低位分为两段:$40~$7e, $a1~$fe
for i := $a1 to $fe do
begin
for j := $40 to $7e do
write(mbig5file, chr(i), chr(j));
for j := $a1 to $fe do
write(mbig5file, chr(i), chr(j));
end;
close(mbig5file);
end.
摘要:
看了好多次有网友的提出关于用delphi实现ping的问题,今天又看到了;所以就将这个功能写成一个类,并且提供一个函数方便大家的使用!
函数procedure pinghost(ip:string;var info:string);ip:目标ip地址;info:ping了以后产生的信息(1)或(2);(1)成功信息ip 发送测试的字符数 返回时间(2)出错信息can not find h......