Модератор: Модераторы
contains
jvuibstoredproc in 'jvuibstoredproc.pas';
dsListFile: TFBDataSet;
...
with dsListFile.DataSet do
For i := 0 to Fields.Count - 1 do
if Fields[i].DataType = ftLargeint then
Fields[i].OnGetText := FieldGetText_Largeint;
...
procedure TForm1.FieldGetText_Largeint(Sender: TField; var Text: string; DisplayText: Boolean);
Var
L: Int64;
begin
if Sender.GetData(@L) then
Text := IntToStr(L)
else
Text := '';
end;
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 6