Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 459 Bytes

Basic.md

File metadata and controls

19 lines (18 loc) · 459 Bytes

Basic functions

  1. UserName()
  • [Ru] ИмяПользователя
  • Receives name of user indicated which launching the program.
CurrentUser = UserName();
  1. CurrentDate()
  • [Ru] ТекущаяДата
  • Determines current (system) date on the computer.
If StartDate = '00010101000000' Then
    StartDate = BegOfMonth(CurrentDate());
EndIf; 
If EndDate = '00010101000000' Then
    EndDate = EndOfMonth(CurrentDate());
EndIf;