AUTOFILLNEWRECORD

  • Thread starter Thread starter margaret
  • Start date Start date
M

margaret

I'm using the AUTOFILLNEWRECORD from Microsoft Article
210236, however, it's stopping on this comand (which so
happens to be right at the top). I don't know enough
about programming to figure out why? As far as I can tell
it has something to do with DAO.Recordset. Am I supposed
to insert my info ... such as DAO.Recordset([FRM Tickets
Sold])?????

Function AutoFillNewRecord(F As Form)

Dim RS As DAO.Recordset, C As Control
Dim FillFields As String, FillAllFields As Integer

Please help.
 
Did you follow the instructions just above "MORE INFORMATION"?

NOTE: The sample code in this article uses Microsoft Data Access Objects.
For this code to run properly, you must reference the Microsoft DAO 3.6
Object Library. To do so, click References on the Tools menu in the Visual
Basic Editor, and make sure that the Microsoft DAO 3.6 Object Library check
box is selected.
 
Back
Top