PDA

View Full Version : Solved: Form Help



Emoncada
05-03-2007, 01:50 PM
I have a TxtBoxPrice in a form I want to be able to grab that value Multiply it by .08 return that in a LblTax and then add both of them in LblTotal.

Can someone assist.

Bob Phillips
05-03-2007, 02:26 PM
LblTax.caption = CDbl(TxtBoxPrice.Text)*.08

add both what?

Emoncada
05-03-2007, 02:36 PM
Add Both LblTax.Caption + TxtPrice.Value = LblTotal

mdmackillop
05-03-2007, 03:10 PM
Looks like you're nearly there
LblTotal.Caption = LblTax.Caption + TxtPrice.Value