Tagged Questions

17
votes
1answer
2k views

Opening a TStream on stdin/stdout in a Delphi console app

I'm trying to write a Delphi console application that creates a TStream for its standard input, and another TStream for its standard output. (It will be launched by a host app with its input and ...
8
votes
2answers
299 views

TFileStream with offset

I need to extend TFileStream so that it can work with a file not from 0 offset, but from user defined offset. I mean it must interpret user defined offset as stream beginning. My code is: type ...
3
votes
1answer
154 views

TStream warning in delphi

I have the following code snippet Procedure TFrm.Retrieve(mystring : string); var bs : TStream; ... begin ... bs:=nil; //bs:= TStream.create; try bs := ...
2
votes
4answers
2k views

String to TStream

I'm attempting to convert a string to a TStream. My code below gives me an "Abstract Error" message on the CopyFrom line. I'm against a brick wall here, any ideas on how to solve this? procedure ...
0
votes
4answers
144 views

tstream is buffer overflow proof?

TStream is an abstract class. However about its implementations, are they buffer overflow proof? If I'm fetching a stream from the internet, from a source that is not me, how do I verify that it is ...
0
votes
1answer
164 views

Problem reading a TStream in Delphi XE

In the previous versions of Delphi, the following code: var InBuf: array[1..45] of Byte; Count := InStream.Read(InBuf, SizeOf(InBuf)); filled the variable InBuf with the correct values ( ...