Well if your wanting label1 to be equal to the equation when you click the button try this:

Code:
Private Sub Command1_Click()
Label1.Caption = (CInt(Text1.Text) + CInt(Text2.Text) + CInt(Text3.Text)) / 100
End Sub
If not, give some more information so I can help you better.