RAD Studio XE8 - You cannot set property. Instances of TCustomActionList are not found

Viewed 120

I've recently bought Embarcadero RAD Studio XE8 and started my first project. I am done with the setting up the UI, but when it came to adding actions to UI I'm in trouble because I am unable to access the Action section of the object inspector. It keeps saying "Instances of TCustomActionList are not found in the current units."

1 Answers

You have most likely forgotten to drop a TActionList or a TActionManager component on the form; these are the TCustomActionList instances the error message is talking about.

Related