ok the following is code to add tax to the transaction. It is not coming out correctly...
VB Code:
  1. intSubTotal = (Val(txtStateTax.Text) * Val(txtSubTotal.Text))
  2.     frmPOS_Finish.txtGrandTotal.Text = (Val(txtSubTotal.Text) + Val(intSubTotal))
  3.     frmPOS_Finish.txtGrandTotal.Text = Format(frmPOS_Finish.txtGrandTotal.Text, "#,###.##0")