Click to See Complete Forum and Search --> : ActiveX on web


Mithu
August 13th, 2000, 09:14 AM
I have placed an activeX containing public properties Number1,Number2 and Total.
I have placed the activeX on web by the following code.
<object classid="clsid:........." id="myobject" width="20" height="20"></object>
The webpage contains two text inputbox(within a form) from which I want to colect values for Number1 and Number2.
When I shall submit the form the ActiveX will receive values for properties Number1 and Number2 and add them and the result will keep in another public property Total.
Then I shall show the value of the property in the webpage.
How can I do that?Please write in details (i.e how can I pass property values or variables to the activeX from web and get values from activeX to web?)