Thread: [VB6][Access]
View Single Post
Old 05-11-2004, 06:34 AM   #1 (permalink)
John Henry
Addict
 
Location: Grey Britain
[VB6][Access] Adding records to a databasde

I am using the code below to try and put some records into a database. It runs through all the code without reporting any errors, but for some reason it won't work. When I view the table it's supposed to be editing, there's nothing but a couple of 0s in a couple of fields. Any ideas?


Private Sub cmdAdd_Click()

Dim strDbName As String
Dim dbDatabase As Database, rsProperty As Recordset
strDbName = App.Path & "\EstateAgent.mdb"
Set dbDatabase = DBEngine.Workspaces(0).OpenDatabase(strDbName)
Set rsProperty = dbDatabase.OpenRecordset("properties")

rsProperty.AddNew

rsProperty!Property_ref_no = txtPropertyRef.Text
rsProperty!Cl...

rsProperty.Update

rsProperty.Close
dbDatabase.Close

End Sub

Edit: I've just spotted that the fields which are coming up as 0 are the ones which are being read from the comboboxes, so something is obviously going in there.

I also tried adding a record from within access, then writing a similar bit of code to this to read it. That didn't work either.
__________________
"No one was behaving from very Buddhist motives. Then, thought Pigsy, he was hardly a Buddha, nor was he a monkey. Presently, he was a pig spirit changed into a little girl pretending to be a little boy to be offered to a water monster. It was all very simple to a pig spirit."

Last edited by John Henry; 05-11-2004 at 07:36 AM..
John Henry is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47