N
Nylex
I have a stock and Invoice system that is working very accurately since
asking for help twice on this site and both times they were great
When entering the purchases I am trying to expand the system so that we can
print labels before the stock is put on the shelf
I have a label table with SerialNumber and SalePrice in it
I need to put into the file as many entries as we purchased so the the Avery
Wizard will automatically print the labels for us
Dim ItemNos as Integer
ItemNos = Me![Quantity]
For i = 1 To ItemNos
DoCmd.OpenForm "Temp PopUp", , , , acFormAdd, acDialog
Forms![Temp PopUp]![SerialNumber] = Me![SerialNumber] (Stops Here)
Forms![Temp PopUp]![SalePrice] = Me![SalePrice]
DoCmd.Save
DoCmd.Close
Next i
Exit Sub
Form Opens and then the Error comes up on the next lines
I can open the file but then is stops
asking for help twice on this site and both times they were great
When entering the purchases I am trying to expand the system so that we can
print labels before the stock is put on the shelf
I have a label table with SerialNumber and SalePrice in it
I need to put into the file as many entries as we purchased so the the Avery
Wizard will automatically print the labels for us
Dim ItemNos as Integer
ItemNos = Me![Quantity]
For i = 1 To ItemNos
DoCmd.OpenForm "Temp PopUp", , , , acFormAdd, acDialog
Forms![Temp PopUp]![SerialNumber] = Me![SerialNumber] (Stops Here)
Forms![Temp PopUp]![SalePrice] = Me![SalePrice]
DoCmd.Save
DoCmd.Close
Next i
Exit Sub
Form Opens and then the Error comes up on the next lines
I can open the file but then is stops