Simple Interest Calculator ( update 1) - Now used to find Amount also !
Make this program and you have a total Interest calculator ...
If anyone knows how to fix the bugs ,please mail me with the code and I will update it .
Original Author: ComputerWhiz
Code
Make three textboxes with the names :- txtPrinciple, txtRI, txtTime Respectively . Then make a command button and name it cmdAnswer . Then make a variable - AnswerGot
i.e dim AnswerGot
After that ,make a label control and name it lblAnswer
Now ,in the click event of the cmdAnswer add this code :-
lblAnswer.Caption = AnswerGot
AnswerGot = txtprinciple * txtRI * txtTime / 100
Now ,for the updated part ,to get the amount -
Make a label and name it lblAmount
Make a command button and name it cmdAmount
Make a variable - AmountAns
In the click event of cmdAmount add -
lblAmount.caption = AmountAns
AmountAns = txtPrinciple + lblAnswer
_________________________________________________ ***** Please vote for this article .I will very highly appreciate your voting ....
Loading Comments ...
Comments
No comments have been added for this post.
You must be logged in to make a comment.