Private Sub Command1_Click() Dim P As Integer, R As Integer, T As Integer Dim SI P = Val(Text1.Text) R = Val(Text2.Text) T = Val(Text3.Text) SI = (P * R * T) / 100 Text4.Text = SI End Sub Private Sub Command2_Click() Dim P, R, T As Integer Dim CI P = Val(Text1.Text) R = Val(Text2.Text) T = Val(Text3.Text) CI = (P * (1 + R / 100) ^ T) - P Text4.Text = CI End Sub
This blogger has been created for the purpose of education. The owner of this blogger is Vikas Kumar Sharma who has worked hard in making this blog lo, only coding related topics are posted in this blog. Computer people who want to learn the language, follow this blog and post it to others
Wednesday, 5 August 2020
SI and CI using Vb6
Subscribe to:
Posts (Atom)
Program to check whether the reverse string is a palindrome
# include < stdio.h > # include < string.h > int main ( ) { //declare variables char str1 [ 30 ] ; int i , len...

-
Example 4: Calculator Program in C using function and switch statement Let's create a Calculator program using function and switch cas...
-
Example-1 .How to write a calculator program in C using the switch case statement . calculator.c # include < stdio.h > int main ( )...