Icon View Incident Report

Serious Serious
Reported By: Max Bernaert
Reported On: 3/4/2002
For: Version 3.07 Build 1
# 1062 Closing a Table or Query that is Used as a Lookup Source or with Locate Method Causes #15002 Error

Example below:

procedure TSc_menu.Button1Click(Sender: TObject);
begin
  try
  repeat
    Screen.Cursor := CrHourGlass;
    Sc_vw_gebruikers := TSc_vw_gebruikers.Create(Application);
    Screen.Cursor := CrDefault;
    Sc_vw_gebruikers.Start_Unit('M'); { Lookup table is opened here }
    Sc_vw_gebruikers.Free;
    Dmvb.DBLogistic.CloseDataSets;  { Lookup table is closed here }
  until 1 = 2;
  except
    raise;
  end;
end;



Resolution Resolution
Fixed Problem on 3/16/2002 in version 3.08 build 1
Image