Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
Delphi 12 Athens
|
Re: Per HTTP einen Befehl senden
17. Jul 2004, 18:43
ShellExecute wäre auch noch 'ne Möglichkeit:
Delphi-Quellcode:
ShellExecute(0, nil, 'http://192.168.0.200/apicmd.asp?cmd=play', nil, nil, 0);
S := 'http://192.168.0.200/apicmd.asp?cmd=play';
ShellExecute(0, nil, PChar(S), nil, nil, 0);
$2B or not $2B
|
|
Zitat
|