Hello,
I have this
TDialog.GetData record, to
get/set the fields on a dialog form.
TParameterData = record
startPrime: String[250];
endPrime : String[250];
indexPrime: Char;
forceStart: Char;
end;
- I have two
PInputLine- I have two
PCheckBoxes- I have three
PButton- I can read the first input line content
- I can read the second input line content
- I can read the first check-box state true/false (when I use
Boolean as type)
- I can
*not* read the second check-box state, it will be always
FalseSo, how can I get/set field data from
TDialog's ?