Einzelnen Beitrag anzeigen

Benutzerbild von toms
toms
(CodeLib-Manager)

Registriert seit: 10. Jun 2002
4.648 Beiträge
 
Delphi XE Professional
 
#4

Re: Formular über Delphi Anwendung ausfüllen

  Alt 7. Feb 2010, 19:17
Delphi-Quellcode:
with WebBrowser1 do
begin
  OleObject.Document.GetElementByID('username').Value := Edit1.Text;
  OleObject.Document.GetElementByID('password').Value := Edit2.Text;
  OleObject.Document.forms.item(1).submit();
end;
Thomas
  Mit Zitat antworten Zitat