This repository has been archived by the owner on Feb 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfrmAIEConfirm.frm
129 lines (108 loc) · 3.04 KB
/
frmAIEConfirm.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
VERSION 5.00
Object = "{9A2947B4-87EE-40EE-A3EF-32BDC32D5726}#1.0#0"; "xfxline3d.ocx"
Begin VB.Form frmAIEConfirm
BorderStyle = 3 'Fixed Dialog
Caption = "AddIn Editor"
ClientHeight = 2040
ClientLeft = 6060
ClientTop = 6690
ClientWidth = 5670
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
KeyPreview = -1 'True
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2040
ScaleWidth = 5670
ShowInTaskbar = 0 'False
Begin xfxLine3D.ucLine3D uc3DLine1
Height = 30
Left = 45
TabIndex = 1
Top = 1440
Width = 5550
_ExtentX = 9790
_ExtentY = 53
End
Begin VB.CheckBox chkDontAsk
Caption = "Don't ask me again"
Height = 195
Left = 45
TabIndex = 2
Top = 1515
Width = 1965
End
Begin VB.CommandButton cmdYes
Caption = "Yes"
Default = -1 'True
Height = 375
Left = 3660
TabIndex = 3
Top = 1590
Width = 900
End
Begin VB.CommandButton cmdNo
Cancel = -1 'True
Caption = "No"
Height = 375
Left = 4695
TabIndex = 4
Top = 1590
Width = 900
End
Begin VB.Image Image1
Height = 480
Left = 225
Picture = "frmAIEConfirm.frx":0000
Top = 360
Width = 480
End
Begin VB.Label lblInfo
BackStyle = 0 'Transparent
Caption = $"frmAIEConfirm.frx":0742
Height = 780
Left = 960
TabIndex = 0
Top = 210
Width = 4485
End
End
Attribute VB_Name = "frmAIEConfirm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
#If LITE = 0 Then
Private Sub chkDontAsk_Click()
Preferences.ShowWarningAddInEditor = Not (chkDontAsk.Value = vbChecked)
End Sub
Private Sub cmdNo_Click()
DlgAns = vbNo
Unload Me
End Sub
Private Sub cmdYes_Click()
DlgAns = vbYes
Unload Me
End Sub
Private Sub Form_Load()
CenterForm Me
LocalizeUI
End Sub
Private Sub LocalizeUI()
lblInfo.Caption = GetLocalizedStr(415)
chkDontAsk.Caption = GetLocalizedStr(418)
cmdYes.Caption = GetLocalizedStr(416)
cmdNo.Caption = GetLocalizedStr(417)
FixContolsWidth Me
End Sub
#End If