Subject | Re: [IBO] TIB_Grid current row? |
---|---|
Author | Jason Wharton |
Post date | 2001-08-27T21:29:59Z |
I had to change to use a virtual view "window" instead of a fully declared
rowcount.
So, things got shook up a little bit.
I recommend you code doesn't hinge on control related things but to the data
itself with the dataset.
HTH,
Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com
rowcount.
So, things got shook up a little bit.
I recommend you code doesn't hinge on control related things but to the data
itself with the dataset.
HTH,
Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com
----- Original Message -----
From: "Jaroslav KULHEIM" <kulheim@...>
To: <IBObjects@yahoogroups.com>
Sent: Monday, August 27, 2001 6:31 AM
Subject: [IBO] TIB_Grid current row?
> Hi,
> in IBO3.6 current row/col was in tib_grid.row/tib_grid.col, but in
IBO4.2Eb
> this doesn't work:
>
> var G: TIB_Grid;
> begin
> G.Col:= 1; // ok
> G.Row:= 2; // compiler says: 'Undeclared identifier 'Row'
> end;