SetDateValue Method (ComboBoxField)
In This Topic
Imposes the specified date format string on the current
ComboBoxField, and assigns to it the specified value as a date.
The syntax of the format string is similar to .NET format strings. Some examples are "m/d/yyyy" or "d-mmm-yy".
Syntax
'Declaration
Public Sub SetDateValue( _
ByVal As System.Date, _
ByVal As System.String _
)
public void SetDateValue(
System.DateTime ,
System.string
)
Parameters
- value
- The value to assign.
- format
- The format string. Cannot be a null reference (Nothing in Visual Basic) or empty.
See Also