S sundart Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-02 #2 1.select 这个字段名, 如果出错就没有。 或者 2.for i := 0 to table.fieldlist.count -1 do if table.fields.fieldname = 'xxx' then showmessage('有这个字段')
1.select 这个字段名, 如果出错就没有。 或者 2.for i := 0 to table.fieldlist.count -1 do if table.fields.fieldname = 'xxx' then showmessage('有这个字段')
S sundayboys Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-02 #3 用FindField这个函数,就是字短不存在的话,它会返回NULL,不会报错的。 Table1->FindField(“CustNO")->AsString="1234";
W WiseAnt Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-05 #4 yes! if Table1.FindField('Field1')<>nil then begin do... end;