-
Notifications
You must be signed in to change notification settings - Fork 1
/
Microsoft Excel Objects
57 lines (49 loc) · 1.14 KB
/
Microsoft Excel Objects
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
'Sheet2(BD)
Private Sub CommandButton1_Click()
F_R_Referencia_Diseño.Show
End Sub
Private Sub CommandButton2_Click()
F_seguimiento_Diseño.Show
End Sub
Private Sub CommandButton3_Click()
UserForm1.Show
End Sub
'Sheet5(Informes_Graficos)
Private Sub Chart_1_Click()
Application.ScreenUpdating = False
Call Indicador_1
End Sub
Private Sub Chart_2_Click()
Application.ScreenUpdating = False
Call Indicador_2
End Sub
Private Sub Chart_3_Click()
Application.ScreenUpdating = False
Call Indicador_3
End Sub
Private Sub Chart_4_Click()
Application.ScreenUpdating = False
Call Indicador_4
End Sub
Private Sub Chart_5_Click()
Application.ScreenUpdating = False
Call Indicador_5
End Sub
Private Sub Mostrar_Click()
Application.ScreenUpdating = False
Call Enseñar_Todo
End Sub
Private Sub Worksheet_Activate()
Application.ScreenUpdating = False
Call Visualizar_Gráficos
End Sub
'Thisworkbook
Private Sub Workbook_BeforeClose(Cancel As Boolean)
ActiveWorkbook.Save
End Sub
Private Sub Workbook_Open()
Application.Visible = False
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Welcome.Show
End Sub