Created
August 22, 2022 12:53
-
-
Save mgcd-jed/51be25dd158dcd0c870f32f4299871c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
procedure TFormExaSpirometrie.ColorInPanels(); | |
var | |
key: string; | |
currentPanel: TPanel; | |
i: integer; | |
begin | |
for Key in mapPanelTests.Keys do begin | |
i := 1; | |
for currentPanel in mapPanelTests.Items[Key] do begin | |
currentPanel.Font.Color := ConfGlobale.Couleur.Spiro[ModePrePost(Examen.GroupeSpiro.Numero)][i]; | |
i := i + 1; | |
end; | |
end; | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment