Questions tagged [tobject]
19 questions
1
vote
2 answers
Why the "T" prefix in TObject?
When declaring classes and so on, what does the "T" in TObject stand for? Template?
Example:
procedure TfrmMain.CaptureInfo1Click(Sender: TObject);
begin
frmCapture.Show;
end;

Danielle van Graan
- 21
- 3
1
vote
2 answers
How to retrieve multidimensional a class element containing multidimensional 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 (! LOL )
Regarding this issue:
1) I'm changing some…

Edward
- 51
- 1
- 2
0
votes
2 answers
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 click "Refresh", how do I get the position of that…

Joe
- 2,675
- 3
- 21
- 26
-4
votes
1 answer
Is there any way to reduce Delphi code / somehow to put other object into variable?
I have
var objeto:TDateEdit; ...
If I change as TDateEdit in the code:
if UpperCase(CAMPOSnoBANCO[ii]) = UpperCase((FORMULARIO.Components[i] as TDateEdit).name )
and use this:
if UpperCase(CAMPOSnoBANCO[ii]) = UpperCase((FORMULARIO.Components[i]…