Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save viniciusmelocodes/4a552fee9714013561ea740c8607b30a to your computer and use it in GitHub Desktop.
Save viniciusmelocodes/4a552fee9714013561ea740c8607b30a to your computer and use it in GitHub Desktop.
var
GrupoRodapeColaborador: Integer;
procedure GF_COLABORADOROnAfterPrint(Sender: TfrxComponent);
begin
GrupoRodapeColaborador := 0;
end;
procedure GF_COLABORADOROnBeforePrint(Sender: TfrxComponent);
begin
GF_COLABORADOR.Visible := GrupoRodapeColaborador > 1;
end;
procedure B_COLABORADORESOnBeforePrint(Sender: TfrxComponent);
begin
GrupoRodapeColaborador := GrupoRodapeColaborador + 1;
end;
begin
GrupoRodapeColaborador := 0;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment