This is very simple, please see:
http://imagebin.org/169524Demo:
uses
LSHTTPSend;
procedure TForm1.Button1Click(Sender: TObject);
var
VVersion: TStringList;
begin
VVersion := TStringList.Create;
try
LSHTTPGetText('http://dl.dropbox.com/u/6943408/version.html', VVersion);
if VVersion.Text <> '' then
Edit1.Text := VVersion.Text
else
ShowMessage('Could not get the version.');
finally
VVersion.Free;
end;
end;SVN of LazSolutions (use TortoseSVN to download all sources):
http://lazsolutions.googlecode.com/svnGood luck.
