Subject | Re: [IBO] Access violation |
---|---|
Author | Jason Wharton |
Post date | 2002-09-05T15:03:52Z |
There isn't enough information to go on here.
Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com
-- We may not have it all together --
-- But together we have it all --
Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com
-- We may not have it all together --
-- But together we have it all --
----- Original Message -----
From: "Dion Oliphant" <dion@...>
To: <IBObjects@yahoogroups.com>
Sent: Wednesday, September 04, 2002 11:48 PM
Subject: [IBO] Access violation
> Hi,
>
> I upgraded from IBO v4.2E to v4.2Hh. I now experience problems with
> certain(NB!!!!) records when scrolling master detail datasets using
> TIB_Grid. The procedure presented as when debugging is:-
>
> procedure TIB_CustomGrid.WMSize(var Message: TWMSize);
> begin
> if not FSizingGrid and not FMouseIsDown then
> begin
> FSizingGrid := true;
> try
> UpdateRowCount;
> UpdateRowPos( Row > FixedRows );
> UpdateScrollBar;
> UpdateColumnAttributes; >>>>>>> cursor stops here!!!!!
> finally
> FSizingGrid := false;
> end;
> end;
> inherited; // JLW - Keep below to avoid horiz scrollbar flicker when
> sizing.
> end;
>
> Before I spend a lot of time checking my data structures, I need to know
if
> this is an IBO problem?
>
> Thanks,
> Dion.