The getmem tag has no wiki summary.
5
votes
1answer
138 views
What allocating method to use for a high volume logger application?
I'm developing a logger/sniffer using Delphi. During operation I get hugh amounts of data, that can accumulate during stress operations to around 3 GB of data.
On certain computers when we get to ...
4
votes
1answer
200 views
Why do I get access violations using Mike Heydon's TStringBuilder class?
I am using a TStringBuilder class ported from .Net to Delphi 7.
And here is my code snippet:
procedure TForm1.btn1Click(Sender: TObject);
const
FILE_NAME = 'PATH TO A TEXT FILE';
var
sBuilder: ...
3
votes
2answers
642 views
Delphi Access Violation Error When Assigning Strings between record types
I have a simple record type. I allocate an new instance of this record and use a procedure ("_clone") to copy values from an existing record to the new one. I obtain an access violation only when ...