Tengo un problema necesito cerrar un formulario en excel pero que la hoja de excel permanezca
Private Sub ComboBox1_Change()
If ComboBox1.Text = "matematicas" Then
Application.Visible = True
Sheets("matematica").Select
End If
If ComboBox1.Text = "CCNN" Then
Application.Visible = True
Sheets("ccnn").Select
End If
End Sub
Private Sub Image1_Click()
End Sub
Private Sub Label1_Click()
End Sub
Private Sub UserForm_Activate()
Application.Visible = False
End Sub
Private Sub UserForm_Initialize()
Label1.Visible = True
UserForm1. ComboBox1. Clear
ComboBox1. AddItem "matematicas"
ComboBox1. AddItem "CCNN"
ComboBox1. AddItem "ESTUDIOS SOCIALES"
End Sub
2 Respuestas
Respuesta de Adriel Ortiz Mangia
1
Respuesta de Joaom Manuel