How to add property to property map without class explorer?

asp.netObjectActivexNemerle

asp.net Problem Overview


I've got a new question after answer on this question https://stackoverflow.com/questions/2816294/pass-parameter-from-page-to-activex

How to add property to property map without class explorer?

Need to add the property for object and class explorer doesn't work because Nemerle doesn't support it yet.

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>

asp.net Solutions


Solution 1 - asp.net

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

Or make a wrapper class and use that.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestioncndView Question on Stackoverflow
Solution 1 - asp.netPhilWView Answer on Stackoverflow