![]() |
Problem mit fileupload - mal gehts mal nicht!?
hi, ich hab einem Problem mit diesem Code:
Delphi-Quellcode:
procedure TForm1.FillUploadform;
var Doc: IHTMLDocument2; Elements: IHTMLElementCollection; Element: IHTMLElement; InputElement: IHTMLInputElement; I, j: Integer; FormItem: Variant; pch: PChar; str1, Value: string; begin value := dateipfad; str1 := Value; //convert input value to string pch := PChar(str1); //type cast to pointer I := 1; Doc := WebBrowser1.Document as IHTMLDocument2; Elements := Doc.all; for I := 0 to Elements.length - 1 do begin Element := Elements.item(I, EmptyParam) as IHtmlElement; if Element.tagName = 'INPUT' then begin InputElement := Element as IHTMLInputElement; if (SameText(InputElement.type_, 'file')) and (SameText(InputElement.Name, 'fileupload')) then begin FormItem := InputElement; FormItem.Focus; SendKeys(PCh, False); // NOTE the false flag end; end; end; end; dieses HTML Element benutze ich:
Code:
jetzt ist es aber so das das script nur manchmal funktioniert, nicht immer was ins fileupload feld geschrieben wird!?
<input type="file" name="fileupload" class="textfield" size="30">
kennt jemand das Problem und weiss wie man das ändern kann? wäre echt nett, danke! :firejump: |
Re: Problem mit fileupload - mal gehts mal nicht!?
hast du auch beim <form>-tag den typ angegeben?:
Code:
<form ... enctype="multipart/form-data">
|
Re: Problem mit fileupload - mal gehts mal nicht!?
Zitat:
|
Re: Problem mit fileupload - mal gehts mal nicht!?
warum so umständlich über den twebbrowser,
mit indy post/get ist das ein wenig einfacher und stabiler |
Alle Zeitangaben in WEZ +1. Es ist jetzt 10:24 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz