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
Defines the field name to which the control is bound.
Get
VB.NET | FieldName = object.DataField As String |
VB | FieldName = object.DataField As String |
C#.NET | string FieldName = object.DataField; |
VC++ | _bstr_t FieldName = object->DataField; _bstr_t FieldName = object->GetDataField(); |
C | HRESULT object->get_DataField(BSTR* FieldName); |
Put
VB.NET | object.DataField = FieldName As String |
VB | object.DataField = FieldName As String |
C#.NET | string object.DataField = FieldName; |
VC++ | _bstr_t object->DataField = FieldName; void object->PutDataField(_bstr_t FieldName); |
C | HRESULT object->put_DataField(BSTR FieldName); |
object
FieldName
A string that defines the name of one of the fields in the recordset object specified by a data source (see DataSource property).
The DataField property defines the field name to which the control is bound.
When used as a bound control, SftMask can provide access to specific data in your database. SftMask manages a single field in a recordset and displays the value of a specific field in the current record. The DataSource" property of the control defines the data source. The DataField property defines the field name in the recordset object created by the data source. Together, these properties define what data appears in the control.
See Also SftMask Object | Object Hierarchy