
Loading ...
Formatting a date/time to the required format is a complex job when working with various times zones or different date formats (Ex - dd/mm/yyyy or mm/dd/yyyy). VB provides a very convenient method named Format to do these formatting. But unfortunately it’s pretty much a missing functionality in VBScript. The code i present in this article [...]
Register or Login to read the full article...
Tags used -
Change, date, format, Now, time, Zone

Loading ...
What is variable?
Variable is a named container used to store values
Declaring a variable
There are three possible ways to declare a variable
Dim <variablename>
Public </variablename><variablename>
Private </variablename><variablename></variablename>
Ex –
Dim x, y, z
Dim a
Dim b, c
Variable naming rules
Variable names should following the below rules
Must not exceed 255 characters.
Must be unique in the [...]
Read the full article...
Tags used -
Coding, Const, convention, date, Double, explicit, float, function, int, naming, option, standards, time, VB, VBScript