No problem. Glad it was a simple fix.
I think I understand what may have happened when you were trying it. When you placed the ActiveX container on the front panel and selected the ActiveX control for it, you got a control that was basically a reference to an ActiveX object. When you right-click the control and select "Create Property Node" you're creating a LabVIEW control property node that's linked to the LabVIEW control, and not an ActiveX property node that's linked to the ActiveX control that's inside the container. In fact, even if you place an ActiveX property node on the block diagram from the Functions>>Communications>>ActiveX palette and then right-click on it and select the front panel control it will change the property node type to a LabVIEW control property node. Kind of annoying, but it's the right thing to do.
When you placed the constant on the block diagram you were specifying a reference to "an" ActiveX class, not a reference to "the" ActiveX class that you had on the front panel. With the constant you would need to use the "Automation Open" but if you did that you would probably get error 3005 which basically tells you that you can't instantiate the class this way.
Anyway, hope that doesn't make things more confusing for you.
By the way, make sure you close your references after you're done with them, including references that get automatically generated if you're accessing properties of the control that return another class. LabVIEW has been known to crash if ActiveX references are left open and you quit out when you're done. Believe me, I know.