How to add a property to a property map without explorer class?

I have a new question after answering this question Skip parameter from page on ActiveX

How to add a property to a property map without explorer class?

You need to add a property for the object, and the explorer class does not work, because Nemerle does not yet support it.

The code:

<object id="DBTableRepX" classid="CLSID:CA8B72B3-3B15-40D7-9364-478E25AF5B41" codebase="DBTableRepX.cab" style=" Z-INDEX: 102; LEFT: 20px; WIDTH: 1200px; POSITION: absolute; TOP: 80px; HEIGHT: 600px"> <param name="ax_Command" value='<%=GetText()%>'/> </object> 
+67
object activex nemerle
May 14 '10 at 9:59 a.m.
source share
1 answer

Why not get your own ActiveX class from the one you are using and add the property to the derived class?

Or create a wrapper class and use this.

+5
Jan 23 2018-12-12T00:
source share



All Articles