Hi Paul,
I know this was not possible in FF2 - is it now? The number of controls is available first a the start of the program (read from a database file).
If not - would it be a good idea to create them in WM_Create with DDT? How Could one avoid conflicts with assigned ID's?
You can create controls at runtime manually by using CreateWindowEx. The control ids that you assign should be less than 1000 because FF starts numbering the controls at 1000.
Thanks, Paul.