VBA – WeekDay

  • Post author:
  • Post category:VBA
  • Post comments:1 Comment

The WeekDay function returns an integer from 1 to 7 that represents the day of the week for the specified date. Syntax Weekday(date[,firstdayofweek]) Parameter Description Date − A required parameter. The…

Continue ReadingVBA – WeekDay

VBA – Month Name

  • Post author:
  • Post category:VBA
  • Post comments:0 Comments

The MonthName function returns the name of the month for the specified date. Syntax MonthName(month[,toabbreviate]) Parameter Description Month − A required parameter. It specifies the number of the month.Toabbreviate − An optional…

Continue ReadingVBA – Month Name

C# – Encapsulation

  • Post author:
  • Post category:C#
  • Post comments:6 Comments

C# Encapsulation is defined 'as the process of enclosing one or more items within a physical or logical package'. Encapsulation, in object-oriented programming methodology, prevents access to implementation details. Abstraction and…

Continue ReadingC# – Encapsulation