Ok, I'll try to explain better.
I designed a custom widget. I transformed this widget into an ActiveX object using QAxFactory. I obtain a dll
Then, with the HTML code of my first post, I insert my widget in an HTML page.
When the page is loaded, the ActiveX is loaded and my widget is created by QAxFactory:create(). This part is working fine.
The <object> tag allows to define <PARAM> elements. These parameters usually allow to configure the object. This is what I want to do. I want to have access to these <PARAM> elements in the constructor of my widget to initialize it. But I can't figure it out how to do that.
Hopefully, I am clear enough this time.
Thanks.