![]() |
Fehler be IdHTTP
Hi,
ich habe nach einem Tuturial( ![]()
Delphi-Quellcode:
Als Fehlermeldung bekomme ich:
unit Unit1;
interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdHTTP; type TForm1 = class(TForm) Edit1: TEdit; Edit2: TEdit; Memo1: TMemo; Memo2: TMemo; Button1: TButton; IdHTTP1: TIdHTTP; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); var Strings: TStringList; begin Strings := TStringList.Create; Button1.Enabled := False; try Strings.Add('mode=write'); Strings.Add('user='+Edit1.Text); Strings.Add('pw='+Edit2.Text); Strings.Add('code='+Memo1.Lines.Text); try HTTP.Post('http://www.deinhost.de/interface.php', Strings); except on E: Exception do showmessage('Error encountered during POST: ' + E.Message); end; finally Strings.Free; end; Button1.Enabled := True; end; end.
Code:
wäre nett wenn ihr mir helfen könntet
[DCC Error] Unit1.pas(47): E2003 Undeclared identifier: 'HTTP'
mfg n3r0f0x |
Re: Fehler be IdHTTP
Hallo und Willkommen in der DP :dp:,
Deine Komponente heißt ja auch IdHTTP1 und nicht HTTP ;) |
Re: Fehler be IdHTTP
dankeee :-D
functioniert alles :-D :-D :-D mfg n3r0f0x |
Alle Zeitangaben in WEZ +1. Es ist jetzt 15:43 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