back
The Bank Statement Problem

This is another problem that uses textboxes to perform calculations.


  • Make sure you name the two text boxes as in the image.
  • Double click the calculate button
  • Type: txtSubtotal.Text = Val(txtBankBal.Text) + Val(txtOutDep.Text)
    txtAdjBank.Text = Val(txtSubtotal.Text) - Val(txtOutChecks.Text)
  • Run the program