Como hacer un evento on_click sobre otros botones
Hola qua tal lo que quiero hacer que cuando le haga click a un boton tambien se presionen otros 2
Como le hago ? Gracias
Como le hago ? Gracias
Para hacer la prueba pon tres command buttons:
Private Sub Command1_Click()
MsgBox "uno"
Call Command2_Click
Call Command3_Click
End Sub
Private Sub Command2_Click()
MsgBox "dos"
End Sub
Private Sub Command3_Click()
MsgBox "tres"
End Sub
salu2
sdemingo
Private Sub Command1_Click()
MsgBox "uno"
Call Command2_Click
Call Command3_Click
End Sub
Private Sub Command2_Click()
MsgBox "dos"
End Sub
Private Sub Command3_Click()
MsgBox "tres"
End Sub
salu2
sdemingo
