G
Guest
Hi,
I have some code that looks like this
for i = 1 to Form_frmRecordViewer.lstData.ListCount - 1
sqlstring = "INSERT INTO Labels ([ItemNumber]) VALUES ( " &
Form_frmRecordViewer.lstData.Column(1, count) & " ) "
next
I have two problems. When I have data like 0001-A it asks for a parameter
list for A but what I want to do is for Labels.ItemNumber to contain 0001-A
not just 1
Second it doesn't like values like A 1.47 in the SQL statement:
Any help would be appreciated
Thanks
I have some code that looks like this
for i = 1 to Form_frmRecordViewer.lstData.ListCount - 1
sqlstring = "INSERT INTO Labels ([ItemNumber]) VALUES ( " &
Form_frmRecordViewer.lstData.Column(1, count) & " ) "
next
I have two problems. When I have data like 0001-A it asks for a parameter
list for A but what I want to do is for Labels.ItemNumber to contain 0001-A
not just 1
Second it doesn't like values like A 1.47 in the SQL statement:
Any help would be appreciated
Thanks