Calculation-Cal-Comp v1.0
Submitted By:
Akshay Minocha
Rating:
(Not rated) (
Rate It)
VERSION 5.00
Begin VB.Form LoanCalc
BorderStyle = 1 'Fixed Single
Caption = "Interest Calculator - Akshay Minocha(10 A)"
ClientHeight = 7875
ClientLeft = 420
ClientTop = 525
ClientWidth = 10485
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 7875
ScaleWidth = 10485
Begin VB.CommandButton Command4
BackColor = &H00FF8080&
Caption = "HOME"
BeginProperty Font
Name = "Walt Disney Script"
Size = 14.25
Charset = 0
Weight = 500
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 2295
Left = 6120
Style = 1 'Graphical
TabIndex = 11
Top = 360
Width = 975
End
Begin VB.CommandButton Command3
BackColor = &H00FF8080&
Caption = "E X I T"
BeginProperty Font
Name = "Walt Disney Script"
Size = 11.25
Charset = 0
Weight = 500
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 2175
Left = 6120
Style = 1 'Graphical
TabIndex = 10
Top = 3720
Width = 975
End
Begin VB.TextBox Text5
Height = 495
Left = 3720
TabIndex = 9
Top = 5400
Width = 1935
End
Begin VB.TextBox Text4
Height = 495
Left = 3720
TabIndex = 8
Top = 3840
Width = 1935
End
Begin VB.CommandButton Command2
BackColor = &H8000000D&
Caption = "Total Amount - - !!"
BeginProperty Font
Name = "Walt Disney Script"
Size = 20.25
Charset = 0
Weight = 500
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 720
Left = 240
Style = 1 'Graphical
TabIndex = 7
Top = 5175
Width = 3015
End
Begin VB.CommandButton Command1
BackColor = &H8000000D&
Caption = "Interest - - !!"
BeginProperty Font
Name = "Walt Disney Script"
Size = 20.25
Charset = 0
Weight = 500
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 720
Left = 240
Style = 1 'Graphical
TabIndex = 6
Top = 3840
Width = 3015
End
Begin VB.TextBox Text3
Height = 495
Left = 2880
TabIndex = 5
Top = 2160
Width = 2175
End
Begin VB.TextBox Text2
Height = 495
Left = 2880
TabIndex = 4
Top = 1320
Width = 2175
End
Begin VB.TextBox Text1
Height = 495
Left = 2880
TabIndex = 3
Top = 480
Width = 2175
End
Begin VB.Frame Frame3
BackColor = &H80000003&
Caption = "Time In Years"
BeginProperty Font
Name = "Walt Disney Script"
Size = 20.25
Charset = 0
Weight = 500
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 240
TabIndex = 2
Top = 2160
Width = 2295
End
Begin VB.Frame Frame2
BackColor = &H80000013&
Caption = "Rate Of Interest"
BeginProperty Font
Name = "Walt Disney Script"
Size = 20.25
Charset = 0
Weight = 500
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 240
TabIndex = 1
Top = 1320
Width = 2295
End
Begin VB.Frame Frame1
BackColor = &H80000003&
Caption = "Principal"
BeginProperty Font
Name = "Walt Disney Script"
Size = 20.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 240
TabIndex = 0
Top = 480
Width = 2295
End
Begin VB.Image Image1
Height = 7875
Left = 0
Picture = "LoanCalc.frx":0000
Top = 0
Width = 10500
End
End
Attribute VB_Name = "LoanCalc"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Label2_Click()
End Sub
Private Sub Command1_Click()
Text4.Text = (Text1.Text * Text2.Text * Text3.Text) / 100
End Sub
Private Sub Command2_Click()
Text5.Text = Text1.Text + ((Text1.Text * Text2.Text * Text3.Text) / 100)
End Sub
Private Sub Command3_Click()
End
End Sub
Private Sub Command4_Click()
LoanCalc.Hide
Calculators.Show
End Sub