Dears, good day to you all
I'm trying to default the Show Internal Information boolean to true

I found this in the report itself this procedure but I tried to set the ShowInternalInfo to true
procedure InitializeRequest(NewNoOfCopies: Integer; NewShowInternalInfo: Boolean; NewLogInteraction: Boolean)
begin
NoOfCopies := NewNoOfCopies;
ShowInternalInfo := NewShowInternalInfo;
LogInteraction := NewLogInteraction;
end;