PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 2024 → fichier Excel 2000 avec macro auto open
fichier Excel 2000 avec macro auto open
Iniciado por rv203, set., 01 2005 5:50 PM - Sem resposta
Publicado em setembro, 01 2005 - 5:50 PM
Je cherche à faire ouvrir un classeur avec Excel 2000 qui exécutera automatiquement une macro pour le formatage de ma feuille dès son ouverture. Cela fonctionnait bien avec Excel 97. Si après l'ouverture du fichier je demande l'exécution pas de problème.


Sub Auto_Open()

Application.Run ("unprotec")
ActiveWindow.DisplayHeadings = False
Application.ScreenUpdating = False
Application.DisplayFormulaBar = False
With Application
.Calculation = xlAutomatic
.MaxChange = 0.001
End With
Application.Run ("protec")

End Sub