Zum Inhalt springen

Empfohlene Beiträge

Geschrieben

Hallo!!!

Ich habe folgende Funktion (die Formularfelder von Internetseiten mit Informationen füllen soll.):

function FillForm(WebBrowser: TMozillaBrowser; FieldName: string; Value: string): Boolean;  

var  

  i, j: Integer;  

  FormItem: Variant;  

begin  

  Result := False;  

  //no form on document  

  if WebBrowser.OleObject.Document.all.tags('FORM').Length = 0 then  

  begin  

    Exit;  

  end;  

  //count forms on document  

  for I := 0 to WebBrowser.OleObject.Document.forms.Length - 1 do  

  begin  

    FormItem := WebBrowser.OleObject.Document.forms.Item(I);  

    for j := 0 to FormItem.Length - 1 do  

    begin  

      try  

        //when the fieldname is found, try to fill out  

        if FormItem.Item(j).Name = FieldName then  

        begin  

          FormItem.Item(j).Value := Value;  

          Result := True;  

        end;  

      except  

        Exit;  

      end;  

    end;  

  end;  

end; 

Leider bekomme ich folgende Fehlermeldung: Library not registered und dann wird unter Delphi 7 Personal die Unit: MOZILLACONTROLLib_TLB geöffnet.

Was mache ich falsch (wie kann ich die Bibliothek (Library) registrieren?)

Geschrieben

Guckst du hier:

Installation should be a straightforward procedure:

1. Install or build mozilla

2. Open a DOS prompt, change to your Mozilla bin directory (e.g. "cd c:\mozilla\bin")

3. Type "regsvr32 mozctlx.dll"

Note that building Mozilla will usually register the control for you unless you have set MOZ_NO_ACTIVEX_REGISTRATION to disable this behaviour.

If regsvr32.exe is not in you path use the "Find Files..." facility of 95/98/NT to locate it and run it using its the full path.

Do not register mozctl.dll! The new mozctlx.dll now contains all the PATH fixup magic that ensures the control works correctly.

Erstelle ein Benutzerkonto oder melde Dich an, um zu kommentieren

Du musst ein Benutzerkonto haben, um einen Kommentar verfassen zu können

Benutzerkonto erstellen

Neues Benutzerkonto für unsere Community erstellen. Es ist einfach!

Neues Benutzerkonto erstellen

Anmelden

Du hast bereits ein Benutzerkonto? Melde Dich hier an.

Jetzt anmelden

Fachinformatiker.de, 2024 by SE Internet Services

fidelogo_small.png

Schicke uns eine Nachricht!

Fachinformatiker.de ist die größte IT-Community
rund um Ausbildung, Job, Weiterbildung für IT-Fachkräfte.

Fachinformatiker.de App

Download on the App Store
Get it on Google Play

Kontakt

Hier werben?
Oder sende eine E-Mail an

Social media u. feeds

Jobboard für Fachinformatiker und IT-Fachkräfte

×
×
  • Neu erstellen...