Abrir segundo libro y tercer libro
Hola tengo el siguiente código en mi hoja prueba.xls
Sub abrir1()
Workbooks.Open ThisWorkbook.Path & "\" & "buscarhoja1.xls"
End Sub
Sub abrir2()
Workbooks.Open ThisWorkbook.Path & "\" & "buscarhoja2.xls"
End Sub
y tengo un formulario en mi hoja prueba.xls que al abrirse me pide contraseña
Private Sub BotonOK_Click()
If Psw <> "JMP" Then
MsgBox "Clave Incorrecta" & vbNewLine & "El programa se cerrará"
Application.DisplayAlerts = False
ThisWorkbook.Close False
Application.DisplayAlerts = True
Else
End
End If
End Sub
Y quisiera que al darle con la clave correcta me abra el libro con el nombre buscarhoja1 y también el libro buscarhoja2
Intento poner este código
Private Sub BotonOK_Click()
If Psw <> "JMP" Then
abrir1
abrir2
MsgBox "Clave Incorrecta" & vbNewLine & "El programa se cerrará"
Application.DisplayAlerts = False
ThisWorkbook.Close False
Application.DisplayAlerts = True
Else
End
End If
End Sub
Pero no abre los libros... Que estoy haciendo mal?
Ayuda por favor
Gracias
Jesús