SftMask/OCX 6.5

SftMaskCalendar.FormatDate Method

Softel vdm, Inc.

Converts a date into a displayable string.

Syntax       

VB.NET

object.FormatDate(ByVal Dt As Date, ByRef Text As String)

VB

object.FormatDate(ByVal Dt As Date, Text As String)

C#.NET

void object.FormatDate(System.DateTime Dt, ref string Text);

VC++

HRESULT object->FormatDate(DATE Dt, _bstr_t* Text);

C

HRESULT object->raw_FormatDate(DATE Dt, BSTR* Text);

Delphi

procedure object.FormatDate(Dt : TDateTime, var Text : WideString);

object

A SftMaskCalendar object.

Dt

The date to be converted to a formatted string.

Text

The caller provides a formatting string or a predefined formatting string, based on which the Date Dt is formatted. If an empty string is used, the short date format is used. The formatted string is returned in Text.

Text

Description

"short"

The short date format is used (as defined by the user locale).

"long"

The long date format is used (as defined by the user locale).

formatting string

The formatting string (as supported by GetDateFormat) is used to format the specified date. See below for valid formatting strings.

Comments

The FormatDate method converts a date into a displayable string.

The FormatDate method uses the Windows GetDateFormat API to format the specified date Dt.

Text can be defined as "short", "long" or as a formatting string as supported by the Windows GetDateFormat API. A formatting string can consist of one or more of the following items:

Text

Description

d

Day of month (without leading zero for single-digit days)

dd

Day of month (with leading zero for single-digit days)

ddd

Day of week as a three-letter abbreviation (using GetLocaleInfo, LOCALE_SABBREVDAYNAME)

dddd 

Day of week as its full name (using GetLocaleInfo, LOCALE_SDAYNAME)

Month (digits without leading zero for single-digit months)

MM 

Month (digits with leading zero for single-digit months)

MMM 

Month as a three-letter abbreviation (using GetLocaleInfo, LOCALE_SABBREVMONTHNAME)

MMMM 

Month as its full name (using GetLocaleInfo, LOCALE_SMONTHNAME)

Year as last two digits (without leading)

yy 

Year as last two digits (with leading zero)

yyyy 

Year represented by full four digits.

gg 

Period/era string (using GetLocaleInfo, CAL_SERASTRING). This is ignored if the date to be formatted does not have an associated era or period string.

Literal characters must be enclosed by single quotes:

Text = "dddd, MMMM d 'in the year' yyyy"

To specify a literal single quote, use two quotes:

Text = "dddd, MMMM d 'in '''yy"

Calendar.FormatDateV 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.


Feedback / comments / error reports for this topic
© 2000, 2008 - Softel vdm, Inc. - www.softelvdm.com