-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPROCUREMENT_DATA.frm
38 lines (30 loc) · 966 Bytes
/
PROCUREMENT_DATA.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
38
VERSION 5.00
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} PROCUREMENT_DATA
Caption = "UserForm1"
ClientHeight = 10680
ClientLeft = 36
ClientTop = 384
ClientWidth = 16416
OleObjectBlob = "PROCUREMENT_DATA.frx":0000
StartUpPosition = 1 'CenterOwner
End
Attribute VB_Name = "PROCUREMENT_DATA"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
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 Frame1_Click()
End Sub
Private Sub ProcurementDate_Change()
End Sub
Private Sub ScrollBar2_Change()
End Sub