-
Notifications
You must be signed in to change notification settings - Fork 1
/
ADMIN_PAGE.frm
37 lines (31 loc) · 948 Bytes
/
ADMIN_PAGE.frm
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
VERSION 5.00
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} ADMIN_PAGE
Caption = "UserForm4"
ClientHeight = 5580
ClientLeft = 36
ClientTop = 384
ClientWidth = 8304
OleObjectBlob = "ADMIN_PAGE.frx":0000
StartUpPosition = 1 'CenterOwner
End
Attribute VB_Name = "ADMIN_PAGE"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CommandButton1_Click()
DASHBOARD.Show
End Sub
Private Sub CommandButton2_Click()
Dim response As VbMsgBoxResult
'Displays a confirmation dialog before existing
response = MsgBox("Do you really want to quit the application ?", vbYesNo + vbQuestion, "Quit")
'If the user clicks "Yes", close the application
If response = vbYes Then
Application.Quit
End If
End Sub
Private Sub Frame2_Click()
End Sub
Private Sub Label2_Click()
End Sub