Private Sub Command1_Click()
If Text1 = "" Then
MsgBox "Debe ingresar una aplicación para poder agregar un elemento", vbQuestion + vbOKOnly, "Datos incompletos"
Else
Form2.Combo1.AddItem Text1
Form6.Combo1.AddItem Text1
Form9.Combo1.AddItem Text1
MsgBox "¡Agregado!", vbOKOnly, "Datos Correctos"
Form7.Hide
End If
End Sub
Private Sub Command2_Click()
If Combo1.ListIndex <> -1 Then
Form2.Combo1.RemoveItem Combo1.ListIndex
Form6.Combo1.RemoveItem Combo1.ListIndex
Form9.Combo1.RemoveItem Combo1.ListIndex
End If
End Sub