|
Question: When I do CheckIn/CheckOut in Delphi, I get the error "Error Creating Form: Module <....> has open descendents or linked Modules. Cannot load". What should I do to solve it?
Answer: This error occurs because when executing storage commands (Get, CheckOut, etc) for a file you should reopen this file in the IDE, in order to show all possible changes.
In some Delphi builds this operation causes the error "Error Creating Form: Module <....> has open descendents or linked Modules. Cannot load" in case a form/forms referred to the data module was/were not open in the editor. If you open the form in advance, the error won't occur.
To avoid this error you should:
Now before updating a file Athlant will check whether all modules/forms mentioned in Favorites are open, and open those which have been closed.
Back to the section