Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How do I return a value from an activex dll?
Message
From
12/01/2001 01:40:59
 
General information
Forum:
Visual Basic
Category:
ActiveX controls
Miscellaneous
Thread ID:
00462532
Message ID:
00462803
Views:
17
add this to your dll code:

Dim vTestProperty As Variant
Public Property Get TestProperty() As Variant
TestProperty = vTestProperty
End Property
Public Property Let TestProperty(v As Variant)
vTestProperty = v
End Property

and use an equivalent of this in vfp:

oMyDLL = CreateObject("mydll.mydllutil")
? oMyDLL.TestProperty
============================================================
'C' is shorthand for Confusion, 'C++' much more confusion...
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform