Issue with Quick Access toolbar

In method TAdvCustomQuickAccessToolBar.SetParent of unit AdvToolbar.pas the following line
if Assigned(Parent) and not (AParent.Parent is TAdvToolBarForm) then
leads to an exception, if AParent is nil and therefore should be fixed to
if Assigned(AParent) and not (AParent.Parent is TAdvToolBarForm) then

I guess you are not using the latest version v10.6.6.0 as this was already fixed.

Sorry, I forgot to mention that this error was related to version 10.6.2.0.

I downloaded version 10.6.6.0 and compared unit AdvToolBar.pas with version 10.6.2.0 and found that the code regarding TAdvCustomQuickAccessToolBar.SetParent did not change between the two versions.

I confused with the first condition.
We fixed it now. Next update will have this fix.