
COM properties don't show in VB watch window
Try implementing IProvideClassInfo2 on your ATL object. Not sure
if this will help though...
--
=====================================
Alexander Nickolov
Microsoft MVP [VC], MCSD
MVP VC FAQ: http://www.mvps.org/vcfaq
=====================================
Quote:
> Hi
> I am building an ATL COM component (DLL) for use with VB
> but I cannot see the properties' values in VB's Watch
> window even though I can debug.print them.
> That is, when I do:
> Debug.Print myObj.myProperty
> I get the property value but if I add a watch to myObj I
> get a <No Variables> instead of the properties values.
> In the C++ side I have the put_... and get_... pairs and
> they look alright.
> Where should I be looking for the problem?
> Thanks
> Jose