google.com, pub-4617457846989927, DIRECT, f08c47fec0942fa0 Learn to enjoy every minute of your life.Only I can change my life.: menu driven program in vb

Saturday, February 7, 2015

menu driven program in vb

Private Sub cmdClear_Click()
    Text1.Text = ""
    Text2.Text = ""
    Text3.Text = ""
    Text1.SetFocus
End Sub

Private Sub cmdExit_Click()
    Unload Me
End Sub

Private Sub mnuadd_Click()
    Text3.Text = Val(Text1.Text) + Val(Text2.Text)
End Sub

Private Sub mnuDiv_Click()
    Text3.Text = Val(Text1.Text) / Val(Text2.Text)
End Sub

Private Sub mnuMult_Click()
    Text3.Text = Val(Text1.Text) * Val(Text2.Text)
End Sub

Private Sub mnusub_Click()
    Text3.Text = Val(Text1.Text) - Val(Text2.Text)
End Sub

Output:-



Describe the universe

 As a PhD student in cosmology, I'd describe the universe as: Structure and Evolution The universe is a vast, complex system comprising ...