Einzelnen Beitrag anzeigen

1ceman

Registriert seit: 16. Dez 2005
Ort: Odenthal
134 Beiträge
 
Delphi 6 Personal
 
#18

Re: Formular ohnt (Html)Forms ausfüllen

  Alt 11. Dez 2006, 16:44
ich hab das jetzt mal so gemacht:
Delphi-Quellcode:
procedure TForm1.Button2Click(Sender: TObject);
var Field:IHTMLElement;
  Formname,FieldName:string;
  Document: IHTMLDocument2;
  Form: IHTMLFormElement;
  Forms: IHTMLElementCollection;
  inputField: IHTMLInputElement;
begin
FormName:='formular';
FieldName:= 'login';
Document:= WebBrowser1.Document as IHTMLDocument2;
Forms:= Document.Forms as IHTMLElementCollection;
Form:= Forms.Item(FormName,'') as IHTMLFormElement;
Field:= Form.Item(FieldName,'') as IHTMLElement;
if Field.TagName = 'INPUTthen
    begin
      inputField := field as IHTMLInputElement;
      inputField.value := 'test';
    end;
end;
nur in der Zeile 14 (Field:= Form.Item(FieldName,'') as IHTMLElement kommt immer nen error, ich weiss aber leider net warum.
bin halt auch noch nen anfänger auf dem Gebiet.
Roman
  Mit Zitat antworten Zitat