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


Reply With Quote
)