06/04/2007, 14:12
|
| | | Fecha de Ingreso: diciembre-2003 Ubicación: A un click de distancia
Mensajes: 1.044
Antigüedad: 21 años Puntos: 11 | |
Re: Excel - Seleccionar Celdas Bloqueadas: cambia todo el tiempo :S Termine haciendolo de esta manera,
Sub Auto_Open()
Application.ScreenUpdating = False
Sheets("Base de Datos").Unprotect "x"
Sheets("Base de Datos").EnableSelection = xlUnlockedCells
Sheets("Base de Datos").Protect "x"
Sheets("FACTURA").Unprotect "x"
Sheets("FACTURA").EnableSelection = xlUnlockedCells
Sheets("FACTURA").Protect "x"
Sheets("Caja").Unprotect "x"
Sheets("Caja").EnableSelection = xlUnlockedCells
Sheets("Caja").Protect "x"
Application.ScreenUpdating = False
End Sub
Por lo menos sali del paso ;)
__________________ -- Nunca te des por vencido, aún vencido -- Web |