home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- global title, mcprice, orders, orderline, quantlist, totallist, session
- set session to session + 1
- set quantity to value(the text of field "Quantity")
- append(quantlist, quantity)
- set total to integer(quantity * mcprice)
- append(totallist, total)
- set orderline to the text of field "Quantity" & " " & the text of field "Title" & " " & "$" & string(total) & ".00"
- append(orders, orderline)
- end
-