-
The following should work:
procedure TForm1.FormCreate(Sender: TObject);
var
Path : String;
begin
Path := ExtractFilePath(Application.EXEName);
Path := Path + 'DBF\';
IfapHausTable1.Active := False;
Table1.FilePathFull := Path;
IfapHausTable1.Active := True;
end;.
2009-05-06 09:47:15 UTC in tDBF component for Delphi and BCB
-
Now again with the corrected Subject
I tried to use TDbf in Delphi 4 comp. 5.104 Update Pack 2
During comiling the following Error messages occured:
[Fehler] Dbf_PrsDef.pas(231): Undefinierter Bezeichner: 'PDouble'
Fixed with adding line in type declaration:
PDouble = ^Double;
then I tried to compile again:
Occuring Error messages:
[Warnung] Dbf.pas(305): Methode...
2009-01-03 14:14:33 UTC in tDBF component for Delphi and BCB
-
Delphi 4 comp. 5.104 Update Pack 2
Error messages
[Fehler] Dbf_PrsDef.pas(231): Undefinierter Bezeichner: 'PDouble'
Fixed with adding line in type declaration:
PDouble = ^Double;
again: compile
Error messages:
[Warnung] Dbf.pas(305): Methode 'SetFieldData' verbirgt virtuelle Methode vom Basistyp 'TDataSet'
[Fehler] Dbf.pas(443): Eigenschaft 'BeforeRefresh' existiert nicht in...
2009-01-01 20:06:50 UTC in tDBF component for Delphi and BCB