Registriert seit: 24. Mai 2003
Ort: Düsseldorf
196 Beiträge
Delphi 2009 Professional
|
Re: DLL öffnen, deren Name ich nicht weiß
26. Jan 2004, 07:11
hi,
so sollte es möglich sein:
Delphi-Quellcode:
var
dllname: string;
dllhand: thandle;
begin
dllname := 'irgendeine.dll';
dllhand := loadlibrary(dllname);
try
if dllhand > 0 then
begin
{}
end
finally
freelibrary(dllhand)
end
end;
HIH
Chris
D2009.4 | Vista SP2 x32
|