Registriert seit: 17. Feb 2007
218 Beiträge
Lazarus
|
Re: Fehler beim Benutzen von DLL Procedure
21. Jun 2008, 14:38
Setze mal statt
procedure LoadStringGrid(StringGrid: TStringGrid; const FileName: TFileName);
->
procedure LoadStringGrid(StringGrid: TStringGrid; const FileName: TFileName); stdcall;
und
procedure LoadStringGrid(StringGrid: TStringGrid; const FileName: TFileName); external 'map.dll'
->
procedure LoadStringGrid(StringGrid: TStringGrid; const FileName: TFileName); stdcall; external 'map.dll';
Jakob
|