![]() |
[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. |
I'm confused. Are you unable to write code to read from this database, either?
Also, have you stepped through the code to make sure that the fields in the recordset are actually being set to the values you think they are -- is it possible they are legimitately being set to a bunch of empty strings and zeroes? |
All times are GMT -8. The time now is 08:56 PM. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project