How to ad new record through odbc connection
hi,
my database connected thrg adodb and when i am trying to create new record though add button, i am getting error that " Can't assign to read-only property.
my code is
Dim cn As New ADODB.Connection
Dim rs As New ADODB.Connection
Private Sub Command1_Click()
rs.AddNew
rs!proj = Text1.Text
rs!bill_amt = Text2.Text
rs.Update
End Sub
|