Q: Need code for creating a multiply calculation form.
... creating a multiplying calculation form. For example: Salary/hr,
TotalHours then calculate the TotalPay (The form contains 3 labels, 3
text boxes, and a command Calculate).

Loc Phung ;locphung@seyfnet.com

A: On the site is a good example about calculating textboxes.... but quick you must set the code under the calculatebutton: text3.text = cstr(val(text1.text) * val(text2.text)) where text3 = TotalPay; text2 = TotalHours and text1 = Salary Return