I'm a newbie to Access and I need some quick help. I'm trying to figure out if these two things can be done..
1) I have a check box labeled "Payment Received?". The color of the font is red. What I would like to happen is when the check box is checked, the font color changes to red to black. Is that possible?
2) In my main form, I have a text box that pulls the subtotal from products orders.
Name: txtOrderSubtotal
Control Source: =[Order Details Subform].Form!txtOrderDetailsTotal
I have another text box that I enter my tax rate into.
Name: TaxRate
Control Source: TaxRate (stored in Orders table)
A third text box that calcuates the taxes
Name: Taxes
Control source: =[txtOrderSubtotal]*Nz([Tax Rate])
How can I make the calcuations for the taxes AND store them so I can later print out a sales receipt or invoice?
1) I have a check box labeled "Payment Received?". The color of the font is red. What I would like to happen is when the check box is checked, the font color changes to red to black. Is that possible?
2) In my main form, I have a text box that pulls the subtotal from products orders.
Name: txtOrderSubtotal
Control Source: =[Order Details Subform].Form!txtOrderDetailsTotal
I have another text box that I enter my tax rate into.
Name: TaxRate
Control Source: TaxRate (stored in Orders table)
A third text box that calcuates the taxes
Name: Taxes
Control source: =[txtOrderSubtotal]*Nz([Tax Rate])
How can I make the calcuations for the taxes AND store them so I can later print out a sales receipt or invoice?