What am I missing?!

M

miss031

I don't know why this won't work. I am getting a type mismatch error.


Dim db As DAO.Database
Dim rst As DAO.Recordset
Dim varItem As Variant

Set db = CurrentDb

Set rst = db.OpenRecordset("tbl_firearms_licence")

For Each varItem In Me.txt_gun_lic_no.Column(0)

With rst
.AddNew
rst![contact_ID] = [Forms]![add_new_all]![contact_ID]
rst![licence_type] = varItem
'fill in here all the necessary field values
.Update

.Close
End With
Next varItem
 
M

mscertified

ensure you are moving correct data type to each column (based on defined data
type in table design_). Also make sure no value has a NULL in it.

Also it looks like you are closing the recordset in the wrong place!

-Dorian
 
M

miss031

Thanks... sometimes a person just needs a fresh set of eyes. I changed the
code to below, but now, if there is 2 items selected in the listbox, it will
insert 2 records in the table, but they will both be the same, and the same
if there are 3 selected, it inserts 3 identical records. What did I screw up
now?


With rst
For Each varItem In Me.txt_gun_lic_no.ItemsSelected
.AddNew
rst![contact_ID] = [Forms]![add_new_all]![contact_ID]
rst![licence_type] = Me.txt_gun_lic_no.Column(0)
'fill in here all the necessary field values
.Update
Next varItem
.Close
End With

mscertified said:
ensure you are moving correct data type to each column (based on defined data
type in table design_). Also make sure no value has a NULL in it.

Also it looks like you are closing the recordset in the wrong place!

-Dorian

miss031 said:
I don't know why this won't work. I am getting a type mismatch error.


Dim db As DAO.Database
Dim rst As DAO.Recordset
Dim varItem As Variant

Set db = CurrentDb

Set rst = db.OpenRecordset("tbl_firearms_licence")

For Each varItem In Me.txt_gun_lic_no.Column(0)

With rst
.AddNew
rst![contact_ID] = [Forms]![add_new_all]![contact_ID]
rst![licence_type] = varItem
'fill in here all the necessary field values
.Update

.Close
End With
Next varItem
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top