You need to explicitly cast your variables when pushing them into the text box.
If TextBox3.Text < 1000 Then
TextBox4.Text = ""
End If
TotalSalesAmt += TextBox3.Text
TotalComAmt += TextBox4.Text
GrandTotal += TextBox2.Text
For instance your TextBox3.Text above is a String, not a Decimal. Your trying to move through types without casting them to the appropriate type.
Aaron
2010-10-06 19:33:32