home *** CD-ROM | disk | FTP | other *** search
-
- Public Property Get BOFAction() As sdcBOFActionConstants
-
- ' Return the value of the BOFAction property.
- BOFAction = msdcBOFAction
-
- End Property
-
-
- Public Property Let BOFAction(ByVal NewValue As sdcBOFActionConstants)
-
- ' Store the new value for the BOFAction property.
- msdcBOFAction = NewValue
- UserControl.PropertyChanged "BOFAction"
-
- End Property
-
-
- Public Property Get EOFAction() As sdcEOFActionConstants
-
- ' Return the value of the EOFAction property.
- EOFAction = msdcEOFAction
-
- End Property
-
-
- Public Property Let EOFAction(ByVal NewValue As sdcEOFActionConstants)
-
- ' Store the new value for the EOFAction property.
- msdcEOFAction = NewValue
- UserControl.PropertyChanged "EOFAction"
-
- End Property
-
-
- Public Property Get LargeChange() As Integer
-
- ' Return the value of the LargeChange property,
- ' which is the same as the hsbRecScroll control's
- ' LargeChange property.
- LargeChange = hsbRecScroll.LargeChange
-
- End Property
-
-
- Public Property Let LargeChange(ByVal NewValue As Integer)
-
- ' Store the new value for the LargeChange property
- ' directly into the hsbRecScroll control's
- ' LargeChange property.
- hsbRecScroll.LargeChange = NewValue
- UserControl.PropertyChanged "LargeChange"
-
- End Property
-
-
- Public Property Get ConnectionString() As String
-
- ' Return the value of the ConnectionString property.
- ConnectionString = mstrConnectionString
-
- End Property
-
-
- Public Property Let ConnectionString(ByVal NewValue As String)
-
- ' Store the new value for the ConnectionString
- ' property. Any extra spaces at the start or end of
- ' the string are trimmed.
- mstrConnectionString = Trim$(NewValue)
- UserControl.PropertyChanged "ConnectionString"
-
- End Property
-
-
- Public Property Get RecordSource() As String
-
- ' Return the value of the RecordSource property.
- RecordSource = mstrRecordSource
-
- End Property
-
-
- Public Property Let RecordSource(ByVal NewValue As String)
-
- ' Store the new value for the RecordSource property.
- ' Any extra spaces at the start or end of the string
- ' are trimmed.
- mstrRecordSource = Trim$(NewValue)
- UserControl.PropertyChanged "RecordSource"
-
- End Property
-