I'm new to VB,
I'm trying to use the DAO object libary 3.51 to bound a database Field to a TextBox instead of the data control but I can't seem to get it to work.
Please help me here is the code below:
*********************************************************
Public Sub populateFields()'Sub I created
Dim Text1 As TextBox
With rsPasswordsTable 'This was Dim as the Recordset
dbPasswords.Connect
Text1.DataField = "WebSite" 'WebSite is the Fieldname
End Sub
************************************************************
Any help will be greatly appreciated
Webcazy
I'm trying to use the DAO object libary 3.51 to bound a database Field to a TextBox instead of the data control but I can't seem to get it to work.
Please help me here is the code below:
*********************************************************
Public Sub populateFields()'Sub I created
Dim Text1 As TextBox
With rsPasswordsTable 'This was Dim as the Recordset
dbPasswords.Connect
Text1.DataField = "WebSite" 'WebSite is the Fieldname
End Sub
************************************************************
Any help will be greatly appreciated
Webcazy