Quote Originally Posted by pstudio
How can you be wrong when you're asking a question?
:lol: Yeah, good point!
Quote Originally Posted by JSoftware
What do you mean with static fields?
For all I know, a static field is a class field whose value is shared between all class instances. F.x.:
Code:
class X
{
public:
      static int i;
};

X a, b, c;

a::i = 10;
And now, all three class instances (a, b, c) have the same value for i.

Is it possible in Delphi?