Hello
I am using Delphi 3.
I have 30 edit fields named e0, e1, e2, ..., e29. The thing is, that I want to put something into these edit fields, to be specific: I want to put variable a[0] into e0, a[1] into e1 and so on. i could of course write the same thing 30 times, but that takes time and is probably not the best way to do it.
So what I need is a way to call object names with variables. For example: (some pseudo-code)
for i := 0 to 29 do
e{i} := a[i];
Of course this will not work this way, but I think you can see what I am looking for now.
Is there any way to do this? It's not the first time it could come handy, but this time I really need it.
small offtopic question: is there any open source delphi sdk/ide? i'm kinda tired of delphi 3.