摘要:program project1;
uses
windows;
procedure deleteself;
var
hmodule: thandle;
buff: array[0..255] of char;
hkernel32: thandle;
pexitprocess, pdeletefilea, punmapviewoffile: pointer;
be......
摘要:有一段人事档案资料archive.txt,内容如下:
小许男21工程师
小吴女23助理工程师
小蔡男22助理工程师
小牟女22工程师
要将它转入数据库archive.dbf中,archive.dbf结构如下:
姓名,性别,年龄,职称
怎么办呢?现在通过使用delphi编程,很好地解决了这个难题。delphi提供了许多功能强大,丰富的字符处理函数和过程,......
判断文件是否正在使用function isfileinuse(fname : string) : boolean;
var 【程序编程相关:
使系统开始按钮失效】 【推荐阅读:
利用系统图象列表】
hfileres : hfile; 【扩展信息:
Delphi中如何控制Windows任务】
begin
result := false;
if not fileexists(fname) then
exit;
hfileres := createfile(pchar(fname), generic_read or generic_write, ...
下一页 摘要: 现在很多朋友都有了自己的个人主页。有一个留言板主页与访问者交流一下可能是很多网友愿望。但留言板主页不同与一般主页,它不但有主页部分而且还要有数据存储功能。其实用delphi的cgi应用程序可以轻松的制作留言板主页。用elphi开发cgi应用程序不但可以实现asp,html很难实现的低层操作,而且简化了cgi应用程序开发过程。
---- 1.选择delphi的菜单file|new,在new标......