VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Simple Interest Calculator update 1) Now used to find Amount also

by ComputerWhiz (4 Submissions)
Category: Math/Dates
Compatability: Visual Basic 5.0
Difficulty: Beginner
Date Added: Wed 3rd February 2021
Rating: (8 Votes)

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 .

Rate Simple Interest Calculator update 1) Now used to find Amount also

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 ....

Download this snippet    Add to My Saved Code

Simple Interest Calculator update 1) Now used to find Amount also Comments

No comments have been posted about Simple Interest Calculator update 1) Now used to find Amount also. Why not be the first to post a comment about Simple Interest Calculator update 1) Now used to find Amount also.

Post your comment

Subject:
Message:
0/1000 characters