JSON 之 SuperObject(10): Merge、Clone
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, G
JSON 之 SuperObject(11): TSuperTableString、TSuperAvlEntry
通過 ISuperObject.AsObject 可獲取一個 TSuperTableString 對象. TSuperTableString 的常用屬性:
JSON 之 SuperObject(12): TSuperEnumerator、TSuperAvlIterator、ObjectFindFirst...
通過 ISuperObject.GetEnumerator 可獲取一個 TSuperEnumerator 對象. TSuperEnumerator 主要
JSON 之 SuperObject(13): 關於 SO 與 SA 函數
通過 SuperObject 的公用函數 SO 實現一個 ISuperObject 接口非常方便; 前面都是給它一個字符串參數, 它的參數可以是任一類型甚
JSON 之 SuperObject(14): 從 XML 中解析
SuperObject 文件包中還有一個 SuperXMLParser 單元, 可以從 XML 中解析出 ISuperObject.
JSON 之 SuperObject(15): 實例 - 模擬 Google 搜索
本例測試效果圖: 圖片看不清楚?請點擊這裡查看原圖(大圖)。 代碼文件:unit Unit1; interface uses Windows,
JSON 之 SuperObject(16): 實例 - 解析 Google 關鍵字搜索排名
同上例類似, 通過 http://clIEnts1.google.cn/complete/search?&q= + 關鍵字 可以獲取 Google
JSON 之 SuperObject(17): 實例 - 借用 Google 實現全文翻譯
調用 Google 翻譯的地址格式: http://ajax.googleapis.com/AJax/services/language/translate
使用 IXMLHTTPRequest 簡單獲取網頁源代碼
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, G
操作 Wave 文件(1): 關於 Wave 文件的基礎知識與文件格式
最近准備學習 DirectSound、DirectMusic、DirectShow, 但剛一接觸就碰到了關於 Wave 文件的諸多問題, 只好先回頭學學 W
操作 Wave 文件(2): 判斷一個文件是否是 Wave 文件
Wave 文件的前 12 個字節可以這樣描述:TRiff = record ckId : DWord; {RIFF} ckSize : DWord;
VCL 中的 Windows API 函數: AdjustWindowRectEx
AdjustWindowRectEx 用在了 Forms、DBCtrls 單元. AdjustWindowRectEx 可以根據窗口樣式獲取的邊緣尺寸.
VCL 中的 Windows API 函數: AlphaBlend
AlphaBlend 是指定圖像混合透明的函數, 在 Graphics、GraphUtil、RibbonStyleActnCtrls 單元用到. 下面的測
VCL 中的 Windows API 函數: BeginDeferWindowPos
BeginDeferWindowPos 和 DeferWindowPos、EndDeferWindowPos 是一組一起使用的函數, 可對一組窗口的位置、大
WinAPI: BeginPath、EndPath、StrokePath、FillPath、StrokeAndFillPath
BeginPath {路徑開始} EndPath {路徑結束} StrokePath {繪制路徑} FillPath {填充路
WinAPI: SetWindowExtEx、SetViewportExtEx
相似函數: ScaleWindowExtEx、ScaleVIEwportExtEx 本例效果圖: 代碼文件:unit Unit1; interface