2011/06/22

一本深入討論ClientDataSet的專書

書名:Delphi in Depth: ClientDataSets

Delphi in Depth: ClientDataSets, by Cary Jensen. Just Released!
Delphi in Depth: ClientDataSets, by Cary Jensen, will show you how to:
在這本「Delphi in Depth: ClientDataSets」(作者:Cary Jensen),將會闡述以下主題:
  • Improve your software using powerful Delphi ClientDataSet features
    使用強大的Delphi裡ClientDataSet功能,以改善你的軟體
  • Master the art of cached updates
    精通快取更新的藝術
  • Understand the role of in-memory data
    瞭解存放在記憶體的資料所扮演的角色
  • Build multi-tier applications using Delphi's DataSnap
    使用Delphi的DataSnap技術來建構多層式的應用程式
This book covers current and previous versions of Delphi. There is also an accompanying download with source code.
Retail Price: $44.99 USD
Pricing in other countries/denominations may vary
Delphi in Depth: ClientDataSets

2011/06/14

How to extract version information using the Windows API

How to extract version information using the Windows API
讀取執行檔資訊的參考來源。內容真是豐富啊!

Delphi中擷取路徑名稱及檔案名稱的作法

範例:c:\aa\bb\cc\abc.exe
語法:

Label1.Caption := ExtractFileDir(Edit1.Text);
Label2.Caption := ExtractFilePath(Edit1.Text);
Label3.Caption := ExtractFileName(Edit1.Text);


結果: