I installed OQB on delphi6. I compiled the bde demo and run it.
When I try to select a field from a table to be include in the sql statement
I get an AV at the line below. ( see ***** AV: HERE *******)
procedure TOQBLbx.ClickCheck;
var
iCol: Integer;
begin
inherited;
if FLoading then
Exit;
if Checked[ItemIndex] then
begin
TOQBForm(GetParentForm(Self)).QBGrid.Insert( // ***** AV: HERE *******
TOQBForm(GetParentForm(Self)).QBGrid.ColCount,
Items[ItemIndex], TOQBTable(Parent).FTableName);
end