我正在准备申请。IDHTTP:使用 Get 方法。但也有一些问题。我想创建一个代理列表并单击添加了 IDHTTP 的列表框项(代理地址)。对不起,我不懂英语。
我的代码;
procedure TForm1.CheckBox1Click(Sender: TObject);
begin
if CheckBox1.Checked then
begin
LabeledEdit1.Enabled:= true;
LabeledEdit2.Enabled:= true;
IdHTTP1.ProxyParams.ProxyServer:=LabeledEdit1.Text;
IdHTTP1.ProxyParams.ProxyPort:=StrToInt(LabeledEdit2.Text);
CheckBox1.Caption:='Kendi IP adresimi kullan.';
end
else
begin
LabeledEdit1.Enabled:= false;
LabeledEdit2.Enabled:= false;
IdHTTP1.ProxyParams.ProxyServer:='';
IdHTTP1.ProxyParams.ProxyPort:=StrToInt('0');
CheckBox1.Caption:='Proxy kullan.';
end;
end;
procedure TForm1.BitBtn2Click(Sender: TObject);
begin
IdHTTP1.Get(Edit1.Text);
MessageDlg('Mission complated.', mtinformation,[mbOK],0);
end;
我想;
我添加 Listbox1 代理..稍后..单击 Listbox1 项。后来.. BitBtn2 点击。
谢谢。