README.md
December 5, 2022 ยท View on GitHub
Description
This is a program made to calculate interest !
This is for Beginners !...
Comments and Votes will be very highly appreciated ...
More Info
| Submitted On | |
| By | ComputerWhiz |
| Level | Beginner |
| User Rating | 4.0 (20 globes from 5 users) |
| Compatibility | VB 3.0, VB 4.0 (16-bit), VB 4.0 (32-bit), VB 5.0, VB 6.0 |
| Category | Math/ Dates |
| World | Visual Basic |
| Archive File |
Source 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 the total form's code should look something like this ...
Dim AnswerGot
Private Sub Command1_Click()
lblAnswer.Caption = AnswerGot
AnswerGot = txtprinciple * txtRI * txtTime / 100
End Sub
_________________________________________________
*****
Please vote for this article .I will very highly appreciate your voting ....