#
#  TD.17.TXT
#
# -----------------------------------------------------------------------------
#

#
#  demonstrates how to specify multiple items and multiple pages per
#  row.  This isn't really recommended, since it violates the 'one record
#  per row' philosophy of the system, but it works.  One of the problems with
#  this sort of thing is that the prices are going to be all screwed up. 
#  Logically, you associate the first price with the first item, and the
#  second price with the second item, etc.  The system isn't that smart;
#  it creates two items, then sets the price of both to the first price,
#  and then sets the price of both to the second price.  Same thing would
#  go for snippets.
#
## 1_type=item;  1_field=Name;  1_attr=mc;
## 2_type=stock; 2_field=Price; 2_attr=c;
## 3_type=item;  3_field=Name;  3_attr=mc;
## 4_type=stock; 4_field=Price; 4_attr=c;
## 5_type=page;  5_field=Name;  5_attr=mc;
## 6_type=page;  6_field=Name;  6_attr=mc;

Item 1	1.00	Item 2	2.00	Page 1	Page 2
Item 3	3.00	Item 4	4.00	Page 3	Page 4
Item 5	5.00	Item 6	6.00	Page 5	Page 6


