Hey all -
I have a continuous form within my project that displays the inventory for a particular job. For each of the parts listed, I present the end user with "Quantity Ordered" & "Quantity Received" labels (these values are filled in previously). The application then presents the user with a (continuous) textbox named txtReturnQty.
The user enters a quantity to return for a particular line item. In the After_Update function, I process the return, and print the 'Part Returned' packing slip to be sent along to the vendor. This all works just fine.
What I want to do is give the users an option to return multiple parts to the same vendor. Currently, if a user returns 3 parts to Company ABC, 3 packing slips are printed (and the user has to enter the return quantity, tab out of the field to trigger after update, click Ok to confirm return, click Yes to print out part returned packing slip). I'd like to give them the option to mark a number of items for return, then batch process them & print 1 report. There are 2 problems I see:
First Problem - txtReturnQty is a textbox on a continuous form. You enter a value into one textbox, it enters the value into all textboxes. Can I make these independent of one another? Similar to Problem #2 - would solution be to add a field named "qtyReturned" to the table that defaults to 0, and is reset to 0 after print?
Second Problem - Batch processing generally doesn't work so well with databound continuous forms, correct? One option I've considered is to add a boolean field to the table (which is linked to our data file on the server) named "toprint". I could then have independent checkboxes on my form. If my txtReturnQty is independent, then on after_update, I check the box. On cmdPrint_Click, I then iterate through each of my rows, process data (changing qty received [aka qty on hand]) where toprint=true, etc etc?
Any other problems you can see? Any better solutions?
Thanks!
Scott
I have a continuous form within my project that displays the inventory for a particular job. For each of the parts listed, I present the end user with "Quantity Ordered" & "Quantity Received" labels (these values are filled in previously). The application then presents the user with a (continuous) textbox named txtReturnQty.
The user enters a quantity to return for a particular line item. In the After_Update function, I process the return, and print the 'Part Returned' packing slip to be sent along to the vendor. This all works just fine.
What I want to do is give the users an option to return multiple parts to the same vendor. Currently, if a user returns 3 parts to Company ABC, 3 packing slips are printed (and the user has to enter the return quantity, tab out of the field to trigger after update, click Ok to confirm return, click Yes to print out part returned packing slip). I'd like to give them the option to mark a number of items for return, then batch process them & print 1 report. There are 2 problems I see:
First Problem - txtReturnQty is a textbox on a continuous form. You enter a value into one textbox, it enters the value into all textboxes. Can I make these independent of one another? Similar to Problem #2 - would solution be to add a field named "qtyReturned" to the table that defaults to 0, and is reset to 0 after print?
Second Problem - Batch processing generally doesn't work so well with databound continuous forms, correct? One option I've considered is to add a boolean field to the table (which is linked to our data file on the server) named "toprint". I could then have independent checkboxes on my form. If my txtReturnQty is independent, then on after_update, I check the box. On cmdPrint_Click, I then iterate through each of my rows, process data (changing qty received [aka qty on hand]) where toprint=true, etc etc?
Any other problems you can see? Any better solutions?
Thanks!
Scott