Hi all,
i'm kinda new to GUI and OO, so if this is something silly, please excuse the question.
If I've missed some documentation somewhere, point me to it pls.
I have a form, with a whole bunch of text entry fields, that gets generated dynamically from a file.
I might have more fields, or less. It's no set number.
pretty much the what i do is:
for x in readFile
create fld [x] on the form
now, i want to be able to change the values of these fields and save them.
i have a vague idea of how events work. i would use EVT_TEXT to check if a field has changed.
But how do i know _which_ field has changed?
related question to this, is there a way of running through ALL the fields(right term: widgets?) on the form and save that to another file? something like:
for x in fields_on_the_Form
write field[x] to file
hope that was clear enough.
If anyone has an example of such a thing, please point me to it.
TIA
Vuk