Advertisement
Java_Volume1 Math/ Dates #96983

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 .

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
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 ....
Original Comments (3)
Recovered from Wayback Machine