How do you know that you are in the Code tab?
Hello,
I'm looking for the possibility of knowing that we are in the Code tab or if we are on a Report Page.
So that when saving the postponement we can do a specific treatment.
Thank you in advance for your help.
Comments
Up
Up
We've made the following change to frxDesign
TfrxDesignerForm = class(TfrxCustomDesigner)
....
public
{$IFDEF UseTabset}
property Tabs: TTabSet read FTabs;
{$ELSE}
property Tabs: TTabControl read FTabs;
{$ENDIF}
This then allows you capture tab changes/current tab etc and process accordingly
@hsvandrew Thank you for your answer it's great :)