Moin,
vielleicht bringen dich diese Code-Zeilen noch etwas weiter:
Delphi-Quellcode:
procedure TDemoForm.ButtonClick(Sender: TObject);
const
FMT_URL = '
http://genecrew.org?monitor=%s&marke=%s';
var
i: Integer;
sHtml, sKey, sValue,
url:
string;
begin
with ValueListEditor
do
for i := 1
to Pred(RowCount)
do
begin
sKey :=
{IdURI.}TIdURI.ParamsEncode(Keys[i]);
sValue := TIdURI.ParamsEncode(Values[sKey]);
url := Format(FMT_URL, [sKey, sValue]);
// sHtml := HTTP.Get(url);
end;
end;
Freundliche Grüße