Private Sub Command1_Click()
Dim no As Integer
No = Val(Text1.Text)
Picture1.Cls
Picture1.Print no^2
End Sub
can any one tell me the function of this by line
Private Sub Command1_Click() - ???
Dim no As Integer - ???
No = Val(Text1.Text) - ???
Picture1.Cls - ???
Picture1.Print no^2 - ???
End Sub - ??