Loan Calculator
Loan Calculator
Rate Loan Calculator
(1(1 Vote))
Dim payment As Single
payment = Pmt(0.01 * irate.Text / 12, duration.Text, amount.Text, 0, payearly.Value)
txtpmt.Text = Format$(payment, "#.00")
End Sub
Private Sub Command2_Click()
End
End Sub
Private Sub Command3_Click()
amount.Text = Clear
duration = Clear
irate.Text = Clear
txtpmt.Text = Clear
End Sub
Loan Calculator Comments
No comments yet — be the first to post one!
Post a Comment