At first I create a TApplication class.
In the method InitMainWindow() I create a TFramewindow which displays a TDialogobject.
I have also a pointer onto my TDialogobject.
In the constructor of the class TSetup (public of TDialog) I define the TCheckboxes and TRadiobuttons and the pointers onto them.
And I also load the data from a file,where the settings are saved.
But in the constructor of TDialog I can't change the state of the TCheckboxobjects.
So here comes my question: how can I set the state of these buttons ?
At the moment I solve this problem by using another Button which loads the settings , when clicked.