Hello All,
Just trying to find out if there is an easier way of doing this. I know you can do something like this:
example
Do I have to list everything in the record or is there some sort of blanket code that will capture everything.....Just wondering..
Any Ideas?
Just trying to find out if there is an easier way of doing this. I know you can do something like this:
example
Code:
Dim dbs As Database, Rst As Recordset
Dim F As Form
Dim scompany As String
Dim saddress As String
Dim scity As String
Dim sstate As String
Dim szip As String
Dim sattention As String
Dim sinquiryno As String
Set dbs = CurrentDb
Set Rst = Me.RecordsetClone
With Rst
.AddNew
!company = scompany
!Address = saddress
!city = scity
!State = sstate
!Zip = szip
!Attention = sattention
!InquiryNo = sinquiryno
.Update
ect......
Do I have to list everything in the record or is there some sort of blanket code that will capture everything.....Just wondering..
Any Ideas?