Print Selected ID

  • Thread starter Thread starter Yousoft
  • Start date Start date
Y

Yousoft

Dear All,
I want select different ID number from one list to add it to another list,
e.g.
List (1) for the entire ID
List to (2) empty list box to add ID number from list (1) by selecting the
ID and press add button to add the ID.
Finally I want send to print all the add or selected ID's
We can name two list of ID number
1- AllNum
2- SelecNum
Button name Add
Please …any one can help?.
Thanks
 
I would normally create a subform that looks like a list box and ad a
"PrintThis" field to the table used.
I also add three buttons.
"Print This" prints the report based on PrintThis = True
"Select all" Runs an update query to set PrintThis = True
"Clear all" Runs an update query to set PrintThis = False.

It requires minimum code and allows people to keep a set of reports for
reprinting if they wish. (In one case I have two such forms. One slelects
tests and the other selects doctors. It is a trivial matter to pick a set of
tests and then run reports against Doc A vs Doc B, etc.)

It has proven to be *very* popular.
 
Back
Top