VBA – WeekDay
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…
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…
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…
The Year function returns an integer that represents a year of the specified date. Syntax Year(date) Example Add a button and add the following function. Private Sub Constant_demo_Click() msgbox(Year("2013-06-30")) End…
The Month function returns a number between 1 and 12 that represents the month of the specified date. Syntax Month(date) Example Add a button and add the following function. Private…
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…
The C# continue statement in C# works somewhat like the break statement. Instead of forcing termination, however, continue forces the next iteration of the loop to take place, skipping any code in between. For…
The C# Break Statement in has the following two usage − When the break statement is encountered inside a loop, the loop is immediately terminated and program control resumes at the next…
Ext.js Area chart is used for representing data in the Area graph format. It is a Cartesian Chart. Syntax Following is a simple syntax. Ext.create('Ext.chart.CartesianChart',{ series: [{ type: 'area', xField:…
Ext.js Bar chart is used for representing data in the Bar graph format. It is a Cartesian Chart. Syntax Following is a simple syntax. Ext.create('Ext.chart.CartesianChart',{ series: [{ type: 'bar', xField:…
Ext.js - Line Chart is used for representing data in the Line graph format. It is a Cartesian Chart. Syntax Following is a simple syntax. Ext.create('Ext.chart.CartesianChart',{ series: [{ type: 'line',…