SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Converts a date into its components.
VB.NET | object.GetDateInfoV(ByVal Dt As Date, ByRef Year As Object, ByRef Month As Object, ByRef Day As Object, ByRef DayOfWeek As Object) |
VB | object.GetDateInfoV(ByVal Dt As Date, Year As Variant, Month As Variant, Day As Variant, DayOfWeek As Variant) |
C#.NET | void object.GetDateInfoV(System.DateTime Dt, out object Year, out object Month, out object Day, out object DayOfWeek); |
VC++ | HRESULT object->GetDateInfoV(DATE Dt, const _variant_t&* Year, const _variant_t&* Month, const _variant_t&* Day, const _variant_t&* DayOfWeek); |
C | HRESULT object->raw_GetDateInfoV(DATE Dt, VARIANT* Year, VARIANT* Month, VARIANT* Day, VARIANT* DayOfWeek); |
object
Dt
The date to be converted.
Year
Returns the year as specified by Dt.
Month
Returns the month as specified by Dt, a value in the range 1-12.
Day
Returns the day as specified by Dt, a value in the range 1-31.
DayOfWeek
Returns the day of the week (Sunday = 0, Monday = 1, etc.).
The GetDateInfoV method converts a date into its components.
GetDateInfoV can be used to convert a date into its month, day, year components. Calendar.GetTimeInfo is used to retrieve the time related components.
GetDateInfoV is used for languages such as VBScript, which are limited by requiring Variant arguments and do not support strongly typed arguments for return values. For more information please see Using SftMask/OCX with Internet Explorer.
See Also SftMaskCalendar Object | Object Hierarchy