abilita

 

Rem uso di enable applicato agli oggetti
Rem attivabile con proprietà e true o false
Rem uso di visible true o false per visualizzare
Rem o per nascondere oggetto indicato

Private Sub CommandButton1_Click()
Dim a, b, c As Integer

Label1.Caption = cifra1.Text
Label2.Caption = cifra2.Text
Label3.Caption = cifra3.Text
End Sub

Private Sub CommandButton2_Click()
Image2.Visible = True
End Sub

Private Sub CommandButton3_Click()
Image2.Visible = False
End Sub

 

ritorna