I am testing this code to solve a larger problem
Private Sub Command0_Click()
Dim rst As Recordset
*** Set rst = CurrentDb.OpenRecordset("tblDepartment")
rst.Index = "PrimaryKey"
rst.AddNew
rst!DepartmentName = "new dept"
rst.Update...
I would like to write records from a subform with many option buttons:
YES o NO o NA o
YES o NO o NA o
...
The idea is that there is one record corresponding to each choice, and each of these choices (there are 24 sets of 3) relate to the master form record. Should I write a VBA routing to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.