Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Netzwerke (https://www.delphipraxis.net/14-netzwerke/)
-   -   Delphi Problem mit fileupload - mal gehts mal nicht!? (https://www.delphipraxis.net/33340-problem-mit-fileupload-mal-gehts-mal-nicht.html)

quakergod 5. Nov 2004 09:47


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:
<input type="file" name="fileupload" class="textfield" size="30">
jetzt ist es aber so das das script nur manchmal funktioniert, nicht immer was ins fileupload feld geschrieben wird!?

kennt jemand das Problem und weiss wie man das ändern kann?
wäre echt nett, danke! :firejump:

Airblader 5. Nov 2004 10:32

Re: Problem mit fileupload - mal gehts mal nicht!?
 
hast du auch beim <form>-tag den typ angegeben?:

Code:
<form ... enctype="multipart/form-data">

quakergod 5. Nov 2004 11:05

Re: Problem mit fileupload - mal gehts mal nicht!?
 
Zitat:

Zitat von Airblader
hast du auch beim <form>-tag den typ angegeben?:

Code:
<form ... enctype="multipart/form-data">

ja hab ich, ich weiss echt nicht warum es nicht geht!

endeffects 7. Nov 2004 08:51

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