Click here to Skip to main content
15,891,951 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
How to create flat EMI calculator in c# windows application, any one give me some suggestions or ideas


What I have tried:

How to create flat EMI calculator in c# windows application
Posted
Updated 23-Jun-20 1:40am
Comments
Patrice T 23-Jun-20 7:40am    
Try Google.

Step 1 would be to understand the mathematics

What is EMI and how is it calculated? - The Economic Times[^]

Step 2 would be to build a user interface to capture the inputs, you could use text boxes or sliders, or a mix

Step 3 would be to put the values in the interface into the equation and to show the user the result, maybe in a label.
 
Share this answer
 
v2
Comments
Maciej Los 23-Jun-20 8:35am    
5ed!
Start here: Equated Monthly Installment (EMI) Definition[^] - it will explain what the Flat-rate EMI is and how you calculate it.

From that, it's pretty trivial to work out how to do the actual calculation: all you need is textboxes to allow the user to enter the loan amount, interest rate, and the duration.
Add a button to calculate the result, and handle it's Click event.
In the handler convert the user inputs to Decimal values (using Decimal.TryParse[^] and reporting problems to the user), then just use the calculation as shown in the first link.
Display the result in a Label or a read-only TextBox.
 
Share this answer
 
Comments
Maciej Los 23-Jun-20 8:35am    
5ed!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900