Delphi: Frame and State of ActionList - Error?

836 Views Asked by At

I have an Action List on a Form and a Frame (a unit of a Form is impelemented in the Frame).

I set Form2.General.State:=asSuspended in the Frame, and I have an error: Undeclared identifier: 'asSuspended'.

The code works normally in the Form, but not in the Frame.

Why?

Thanks!!!

2

There are 2 best solutions below

3
On BEST ANSWER

It seems like you just have to add ActnList to the uses clause of the unit in which the error appears.

3
On

Add the unit in which asSuspended is defined to the uses clause of the frame unit.