-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPropReference.cls
More file actions
330 lines (316 loc) · 8.82 KB
/
Copy pathPropReference.cls
File metadata and controls
330 lines (316 loc) · 8.82 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "PropReference"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Option Explicit
Dim ObjectRef As Long
Dim vtref As Long
Dim mIndex As Variant
Public UseIndex As Boolean
Dim Init As Boolean
'Dim IamMethod As Boolean ' not used
Dim hardlink As Object, useobj As Boolean, isobjret As Boolean
Private mLastObj As Object
Public arr As Boolean
Private UseExtControl As Boolean
'Dim oEnum As IUnknown
Private IndexList As mIndexes
Private IndexNew As Boolean
Function IsObj()
IsObj = useobj
End Function
Friend Property Get CurObject() As Object
If useobj Then
Set CurObject = hardlink
Else
Set CurObject = var(ObjectRef)
End If
End Property
Property Get ObjectType() As String
On Error Resume Next
Dim v As Variant, that As FastCollection, other As StructCollection
If Not hardlink Is Nothing Then
If TypeOf hardlink Is ExtControl Then
ObjectType = "*" + Typename(hardlink.mycontrol)
Else
If TypeOf hardlink Is FastCollection Then
Set that = hardlink
ObjectType = "[?*Inventory]"
ElseIf TypeOf hardlink Is StructCollection Then
Set other = hardlink
ObjectType = "[?*" + Typename(other.StructObj) + "]"
Else
ObjectType = "[?*" + Typename(hardlink) + "]"
End If
End If
Else
If TypeOf var(ObjectRef) Is ExtControl Then
ObjectType = "[?*" + Typename(var(ObjectRef).mycontrol) + "]"
Else
ObjectType = "[?*" + Typename(var(ObjectRef)) + "]"
End If
End If
End Property
Sub Construct(ref As Long, vtrefnumber As Long, Optional indirect As Boolean = False, Optional UseExtCtrl As Boolean = False)
If useobj Then Exit Sub
UseExtControl = UseExtCtrl
Init = True
ObjectRef = ref
If indirect Then
vtref = -vtrefnumber
Else
vtref = vtrefnumber
End If
End Sub
Sub ConstructObj(obj As Object, vtrefnumber As Long, Optional UseExtCtrl As Boolean = False)
Init = True
UseIndex = False
isobjret = False
mIndex = Empty
UseExtControl = UseExtCtrl
ObjectRef = 0
Set hardlink = obj
useobj = True
Set mLastObj = Nothing
vtref = vtrefnumber
End Sub
Public Property Get lastobj() As Object
Set lastobj = mLastObj
End Property
Public Property Get lastobjfinal() As Object
Set lastobjfinal = mLastObj
Set mLastObj = Nothing
End Property
Public Sub clearlastobject()
Set mLastObj = Nothing
End Sub
Public Property Get ValueObj() As Object
Dim v
Dim RETVAR As Variant, retvar2, obj As Object
Dim check As Boolean
Set mLastObj = Nothing
isobjret = False
If Init Then
If UseIndex Then
If Not IndexNew Then
'ValueObj = 0
Set mLastObj = Me
'Set ValueObj = Me
isobjret = True
Exit Property
ElseIf useobj Then
IndexNew = False
Set ValueObj = ReadPropIndexObjObj(hardlink, vtref, mIndex, UseExtControl)
Else
IndexNew = False
Set obj = var(ObjectRef)
Set ValueObj = ReadPropIndexObjObj(obj, vtref, mIndex, UseExtControl)
End If
Else
If useobj Then
If ReadPropObj(hardlink, vtref, RETVAR, UseExtControl) Then
If IsObject(RETVAR) Then
isobjret = True
'ValueObj = 0
Set mLastObj = RETVAR
Else
If TypeOf RETVAR Is IUnknown Then
isobjret = True
' ValueObj = 0
Set mLastObj = RETVAR: Exit Property
End If
'ValueObj = RETVAR
End If
End If
Else
If ReadProp(ObjectRef, vtref, RETVAR, UseExtControl) Then
If IsObject(RETVAR) Then
isobjret = True
'ValueObj = 0
Set mLastObj = RETVAR
Else
On Error Resume Next
If TypeOf RETVAR Is IUnknown Then
isobjret = True
' ValueObj = 0
Set mLastObj = RETVAR: Exit Property
End If
Err.Clear
' ValueObj = RETVAR
End If
End If
End If
End If
End If
End Property
Public Property Get Value() As Variant
Dim v
Dim RETVAR As Variant, retvar2, obj As Object
Dim check As Boolean
Set mLastObj = Nothing
isobjret = False
If Init Then
If UseIndex Then
If Not IndexNew Then
Value = 0
Set mLastObj = Me
isobjret = True
Exit Property
ElseIf useobj Then
IndexNew = False
Value = ReadPropIndexObj(hardlink, vtref, mIndex, UseExtControl)
Else
IndexNew = False
Value = ReadPropIndex(ObjectRef, vtref, mIndex, UseExtControl, check, RETVAR)
If check And IsObject(RETVAR) Then
On Error Resume Next
Set obj = RETVAR
If ReadOneParameter(obj, (0), vbNullString, retvar2) Then
Value = retvar2
Else
isobjret = True
Set mLastObj = RETVAR
End If
End If
End If
Else
If useobj Then
If ReadPropObj(hardlink, vtref, RETVAR, UseExtControl) Then
If IsObject(RETVAR) Then
isobjret = True
Value = 0
Set mLastObj = RETVAR
Else
If TypeOf RETVAR Is IUnknown Then
isobjret = True
Value = 0
Set mLastObj = RETVAR: Exit Property
End If
Value = RETVAR
End If
End If
Else
If ReadProp(ObjectRef, vtref, RETVAR, UseExtControl) Then
If IsObject(RETVAR) Then
isobjret = True
Value = 0
Set mLastObj = RETVAR
Else
On Error Resume Next
If TypeOf RETVAR Is IUnknown Then
isobjret = True
Value = 0
Set mLastObj = RETVAR: Exit Property
End If
Err.Clear
Value = RETVAR
End If
End If
End If
End If
End If
End Property
Public Property Let Value(vNewValue As Variant)
If Init Then
If Not UseIndex Then
If useobj Then
WritePropObj hardlink, vtref, vNewValue, UseExtControl
Else
WriteProp ObjectRef, vtref, vNewValue, UseExtControl
End If
ElseIf Not IndexNew Then
MyEr "Missing index", "¸÷áóá ôïí äåßêôç"
Exit Property
ElseIf useobj Then
IndexNew = False
WritePropIndexObj hardlink, vtref, vNewValue, mIndex, UseExtControl
Else
IndexNew = False
WritePropIndex ObjectRef, vtref, vNewValue, mIndex, UseExtControl
End If
End If
End Property
Public Property Let ValueStr(s As String)
Dim vNewValue
vNewValue = vbNullString
SwapString2Variant s, vNewValue
If Init Then
If Not UseIndex Then
If useobj Then
WritePropObj hardlink, vtref, vNewValue, UseExtControl
Else
WriteProp ObjectRef, vtref, vNewValue, UseExtControl
End If
ElseIf Not IndexNew Then
' do nothing
MyEr "Missing index", "¸÷áóá ôïí äåßêôç"
Exit Property
ElseIf useobj Then
IndexNew = False
WritePropIndexObj hardlink, vtref, vNewValue, mIndex, UseExtControl
Else
IndexNew = False
WritePropIndex ObjectRef, vtref, vNewValue, mIndex, UseExtControl
End If
End If
End Property
'Public Property Get isMethod() As Boolean
'isMethod = IamMethod
'End Property
'Public Property Let isMethod(ByVal vNewValue As Boolean)
'IamMethod = vNewValue
'End Property
Private Sub Class_Terminate()
Set hardlink = Nothing
End Sub
Public Sub IndexOpt()
IndexNew = True
mIndex = 0
OptVariant mIndex
End Sub
Public Property Get index() As Variant
index = mIndex
End Property
Public Sub ArrayIndex(ParamArray RHS())
mIndex = RHS
End Sub
Public Property Let index(ByVal RHS As Variant)
IndexNew = True
mIndex = RHS
End Property
Friend Sub PushIndexes(idx As mIndexes)
If idx Is Nothing Then Exit Sub
IndexNew = True
UseIndex = True
If IndexList Is Nothing Then
If idx.Count = 1 Then
idx.Dump 0, mIndex
Else
idx.GetArr mIndex
End If
End If
End Sub
Sub IndexAgain()
IndexNew = True
End Sub
Public Property Get LastHasObject() As Variant
LastHasObject = isobjret
End Property
Function Copy() As PropReference
Set Copy = New PropReference
If useobj Then
Copy.ConstructObj hardlink, vtref, UseExtControl
Else
Copy.Construct ObjectRef, Abs(vtref), Sgn(vtref) < 0, UseExtControl
End If
Copy.UseIndex = False
End Function