我想把字段的类型(.Fields[i].DataType) 保存在变量里 如何做? ( 积分: 20 )

  • 主题发起人 主题发起人 zhczm
  • 开始时间 开始时间
Z

zhczm

Unregistered / Unconfirmed
GUEST, unregistred user!
我想把字段的类型(.Fields.DataType) 保存在变量里 如何做?

Tframe_cx(frame1).cxGridTableView2.DataController.RecordCount:=0;
for i:=0 to f_dm.stk_jobstatus.FieldCount-1 do
begin
Tframe_cx(frame1).cxGridTableView2.DataController.InsertRecord(0);
Tframe_cx(frame1).cxGridTableView2.DataController.Values[0, 0] :=f_dm.stk_jobstatus.Fields.DisplayLabel;
Tframe_cx(frame1).cxGridTableView2.DataController.Values[0, 1] :=f_dm.stk_jobstatus.Fields.FieldName;
Tframe_cx(frame1).cxGridTableView2.DataController.Values[0, 2] :=f_dm.stk_jobstatus.Fields.DataType;
end;


Tframe_cx(frame1).cxGridTableView2.DataController.Values[0, 2] :=f_dm.stk_jobstatus.Fields.DataType; 这里只有保存字段的宽度? 怪怪的
 

Similar threads

S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
916
SUNSTONE的Delphi笔记
S
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部