Changeset 335 for trunk/Include/com/vbobject.ab
- Timestamp:
- Sep 18, 2007, 12:10:41 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Include/com/vbobject.ab
r267 r335 165 165 End Function 166 166 167 Sub Prop( ByRefarg As Variant)167 Sub Prop(arg As Variant) 168 168 Prop(ByVal arg.PtrToVariant) 169 169 End Sub … … 173 173 End Sub 174 174 175 Sub PropRef( ByRefarg As Variant)176 PropRef( arg.PtrToVariant)175 Sub PropRef(arg As Variant) 176 PropRef(ByVal arg.PtrToVariant) 177 177 End Sub 178 178 … … 297 297 298 298 Function CreateObject(className As PCWSTR) As VBObject 299 Return New VBObject(className )299 Return New VBObject(className, 0, CLSCTX_ALL) 300 300 End Function 301 301 302 302 Function CreateObject(className As String) As VBObject 303 Return New VBObject(ToWCStr(className) )303 Return New VBObject(ToWCStr(className), 0, CLSCTX_ALL) 304 304 End Function 305 305 /*
Note:
See TracChangeset
for help on using the changeset viewer.