DBGridEh用法總結一

2021-07-26 14:22:04 字數 381 閱讀 8754

dbgrideh用法總結一

一直用dbgrideh,最近才想把使用情況做一記錄,以便檢視。

一、過濾視窗漢化。

解決辦法:修改ehlibconsts.pas這個檔案即可實現。

二、過濾功能

要實現過濾功能需要做如下設定。

dbg.stfilter.visible:= true;//讓過濾顯示出來

dbg.stfilter.location:= stflintitlefiltereh;//過濾顯示的位置,在標題中間

dbg.stfilter.filterbuttondrawtime:= fbdtalwayseh; //什麼時候顯示:一直顯示,還是滑鼠放上去再顯示。

dbg.stfilter.local:= true;

用法總結一

一 字串中的用法 1.學過c 的人都知道c 中字串常量可以以 開頭聲名,這樣的優點是轉義序列 不 被處理,按 原樣 輸出,即我們不需要對轉義字元加上 反斜扛 就可以輕鬆coding。如,string filepath c docs source a.txt rather than c docs so...

DBGridEh按回車進入下一列

以下 在delphi7.0地下除錯通過,僅適合於dbgrid中的列與adoquery中的字段相互對應的情況 procedure tfrmpattern add.dbgriddetailkeydown sender tobject var key word shift tshiftstate vari...

typedef用法總結 一

1.常規變數型別定義 例如 typedef unsigned char uchar 描述 uchar等價於unsigned char型別定義 uchar c宣告等於unsigned char c宣告 2.陣列型別定義 例如 typedef int array 2 描述 array等價於 int 2 ...