I have Delphi XE. I try to set Request.Range
of idHttp
but I cannot do this. Delphi doesn't allow me to do this neither at design time nor at run time.
E.g. I set '6000-'
in a design time -> a property gets empty all time.
I do (in a thread):
Downloader.Request.Range:=(IntToStr(DFileStream.Position) + '-');
synchronize(procedure begin showmessage(Downloader.Request.Range) end);
showmessage(Downloader.Request.Range)
shows me nothing (an empty string).
I checked a request in HTTPAnalyzer -> my program doesn't send a range.
A checked this behavior in Delphi 2010 - all is normal. I set a range in a design/real time. A result is fine in the both cases.
Does anybody have ideas?
Is this a bug or what?
Thanks!