Tagged Questions

6
votes
3answers
805 views

What data does a TObject contain?

TObject.InstanceSize returns 8, yet TObject doesn't declare any data members. According to the implementation of TObject.ClassType, the first 4 bytes can be explained as a pointer to the object's ...
4
votes
3answers
3k views

Delphi array initialization

I currently have this, and it sucks: type TpointArray = array [0..3] of Tpoint; class function rotationTable.offsets(pType, rotState, dir: integer): TpointArray; begin Result[0] := point(1, 1); ...
2
votes
5answers
763 views

cast TObject using his ClassType?

how can i make my code to work ? :) i`ve tried to formulate this question but after several failed attempts i think you guys will spot the problem faster looking at the code than reading my ...
2
votes
4answers
3k views

Delphi: Pass TObject in array of Variants

I have a procedure that expects a parameter of type TObject, something like this: MyProcedure (const AValue : TObject); I have an array of Variant that I'm looping through to call the procedure, ...
1
vote
2answers
159 views

how to retrieve multidimentional a class element containing multidimentional arrays from an arraylist

I'm currently working with CodeGear Delphi 2007 under Vista. My application returns out of memory error during some rather heavy calculations. The .exe files grows from 150 Mb to an amazing 2 Gb (! ...
0
votes
2answers
423 views

Get position of object in a list in Delphi?

I was wondering how you get a position of a certain object in a list that is created. Lets say it is like a graphical list where you can click on objects. Lets say you right click on a object and ...