Skip to content

Instantly share code, notes, and snippets.

@reinaldoacdc
Created July 15, 2022 22:19
Show Gist options
  • Save reinaldoacdc/4d86427ef1b1e7f8c90e9b29fdddbb4d to your computer and use it in GitHub Desktop.
Save reinaldoacdc/4d86427ef1b1e7f8c90e9b29fdddbb4d to your computer and use it in GitHub Desktop.
Ddateutils Helper
function MonthName(n: Integer): String;
const
aMeses :array[0..11] of String = ( 'Janeiro', 'Fevereiro', 'Mar�o', 'Abril', 'Maio', 'Junho',
'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro' );
begin
Result := aMeses[n-1];
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment