Subject | Re: [IBO] Problem with filed DECIMAL(15,3) |
---|---|
Author | sassicaia70@hotmail.com |
Post date | 2001-09-14T09:00:12Z |
OK thank
Try to insert value in dbgrid field by keyboard, the max
value is 9999999,999
Why ???
Try to insert value in dbgrid field by keyboard, the max
value is 9999999,999
Why ???
--- In IBObjects@y..., "Marcin Bury" <mbury@n...> wrote:
> Hi
>
> > IboTable1.Edit;
> > IboTable1.FieldByName('WEIGHT').AsInteger := 99999999,999; //
ERROR
> > IboTable1.Post;
> >
> >
> > With I have this problem ????
> >
>
> The number you are trying to assign is greater then greatest 32bit
integer
> Try :
> IboTable1.FieldByName('WEIGHT').AsFloat:= 99999999,999;
> Should be fine.
>
> Marcin