Delphi實現Dbgrid全選和反選、清除全選的功能,不管是在Delphi下,還是在web開發中,這種功能都是很實用的,是進行數據批量操作的基礎。本模塊就是實現了為Delphi的DBGrid數據列表增加全選內容、清除全選的功能,很實用了,代碼內容如下:
01
//全選
02
procedure
TFrameCustSelector
.
ToolButton1Click(Sender: TObject);
03
var
04
OldCurrent: TBookmark;
05
begin
06
OldCurrent := DBGrid1
DataSource
DataSet
Bookmark;
07
DBGrid1
DisableControls;
08
First ;
09
while
not
Eof
do
10
SelectedRows
CurrentRowSelected :=
true
;
11
Next;
12
end
13
GotoBookmark(OldCurrent);
14
EnableControls;
15
16
//清除全選
17
ToolButton2Click(Sender: TObject);
18
19
20
21
22
23
24
25
False
26
27
28
29
30
31
//反選
32
ToolButton3Click(Sender: TObject);
33
34
35
36
37
38
39
40
CurrentRowSelected;
41
42
43
44
45
眾所周知,Delphi ListView類直接
分 類:安全 語 種:簡體中文 編輯器:Delp
本例效果圖: 代碼文件:unit Unit1;inte
xp有一個bug,就是在語言設置更改輸入法的默認關閉/打開
制作多邊形窗體的關鍵在於設定多邊形的區域,並根據這個指
delphi.指針.應用,delphi指針應用注:初稿...