Einzelnen Beitrag anzeigen

Benutzerbild von Uncle Cracker
Uncle Cracker

Registriert seit: 30. Mär 2003
Ort: Freital
694 Beiträge
 
#8

Re: DLL öffnen, deren Name ich nicht weiß

  Alt 27. Jan 2004, 12:38
Ja, schon klar, wenn ich aber folgendes mache:

Delphi-Quellcode:
var
  dllname: string;
  dllhand: thandle;
begin
  dllname := 'irgendeine.dll';
  dllhand := loadlibrary(PChar(dllname));
  try
    if dllhand > 0 then
      begin
        if Test(1) then Showmessage('OK')
      end
  finally
    freelibrary(dllhand)
  end
end;
Da weiß Delphi logischer weiße nix mit Test anzufangen, aber es ist eine Funktion aus der DLL.
Oder wie meinst du sollte ich es sonst aufrufen.
I wish it was legal to marry software because I'm madly in love with Delphi...
  Mit Zitat antworten Zitat