论坛


2009年12月10日 星期四

System.Assert 断言

万一| 万一的 Delphi 博客 |11:55:00

  阅读: 3 评论: 0 作者:万一发表于 2009-12-10 11:55原文链接var List: TStringList; procedure TForm1.FormCreate(Sender: TObject); begin // Assert(Assigned(List)); //第二个参数默认 'Assertion failure' Assert(Assigned(List), 'List 对象没有建立'...

Programmatically Detect the MyDocuments Folder for the Current Windows User from Delphi

About.com| About.com Delphi Programming |02:00:12

in Delphi TIPS:: The "MyDocuments" folder in Windows should be used to store user created documents such as text documents or presentations.If your Delphi program creates application specific documents you want to be stored in the "MyDocuments" fo...