Oliver2003
Technical User
I am displaying a recordset using the data repeater control; I have created an ActiveX Control that has various text boxes and one Check box.
The Text boxes display fine, but the Check box does not display any info from the recordset, the code I am using is:
Public Property Get ElectronicDocument() As String
ElectronicDocument = chkElectronicDocument.Value
End Property
Public Property Let ElectronicDocument(ByVal newElectronicDocument As String)
chkElectronicDocument.Value = newElectronicDocument
End Property
which is what I had been using for the text boxes.
It is set up in Procedure Attributes as "Property is data bound" and "Show in databindings at designtime"
Any Ideas how to get this d to display info from the recordset.
Cheers.
The Text boxes display fine, but the Check box does not display any info from the recordset, the code I am using is:
Public Property Get ElectronicDocument() As String
ElectronicDocument = chkElectronicDocument.Value
End Property
Public Property Let ElectronicDocument(ByVal newElectronicDocument As String)
chkElectronicDocument.Value = newElectronicDocument
End Property
which is what I had been using for the text boxes.
It is set up in Procedure Attributes as "Property is data bound" and "Show in databindings at designtime"
Any Ideas how to get this d to display info from the recordset.
Cheers.