In prior versions of Delphi, I have used the data module (TDataModule) as a place to keep non-visual components to avoid cluttering up the main form. In Delphi XE2, when I create a new data module, it only allows me to place database related components in it (such as TADOConnection and TDataSource). Why is this and how can I put other components in it? Is there an alternative?
|
|
|||
| show 3 more comments |
|
Data modules changed with the XE2 release. Remember that XE2 introduced a new component framework, FireMonkey, in addition to the long-standing VCL. A new pseudo-property, named The default In your case you probably want to accept VCL components so you need to specify a Read all about
|
|||||
|
|
This (buggy) behavior in
is caused by the line
To get rid of just delete or modify the line into
After switch to (Delphi XE2 16.0.4504.48759) |
|||||||||||||||
|
TImageListorTMainMenuorTActionManager- When I try to paste one, it says the component class is not found, and the palette only shows database related components. – Jerry Dodge Dec 31 '12 at 4:02File->New->VCL Forms Application, and thenFile->New->Other->Delphi Files->Datamodule, which leaves only the database, Intraweb, FastReports, and Indy components available in the component palette. (TImageList and TActionList are not there.) Using the Pro SKU, so it's not that causing the problem. – Ken White Dec 31 '12 at 4:15