Category Archives: Delphi

Set operators * intersection set set S * T

有数学功底的人或逻辑思维严密的人做程序事半功倍 Continue reading

Posted in Delphi | Leave a comment

程序就是布局

    写代码如下棋未下子先有布局

Posted in Delphi | Leave a comment

Word文件转PDF文件 用Acrobat Assistant打印功能

   程序跑在HP380 上 至强3.2G  2G RAM, 看到打印队列中5000多个文件1秒钟消失一个,感觉很爽。

Posted in Delphi | 3 Comments

汗 今天才知道 Delphi pos() 是大小写敏感的, 还 = 也是

 :(

Posted in Delphi | 3 Comments

Word的另一种用法

 
  利用word的另存为,可以在程序中实现各种文本文档格式的相互转换 Continue reading

Posted in Delphi | Leave a comment

Word 文档 转换成 Text 文档

FileName := TxtFileName;
FileFormat := wdFormatText;
TWordDocument.SaveAs2000(FileName, FileFormat);
Continue reading

Posted in Delphi | 1 Comment