Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing data into ActiveX

Status
Not open for further replies.

shankajan

Programmer
Oct 24, 2001
1
GB
Hi All

I am new to ActiveX technology. I want to pass an array of details into ActiveX. For example i had one array with the following details

String
its x axis and y axis value.

Now i want to pass this details into ActiveX.

How to do this?

Thanks in advance
Shan
 
You can send data to an active-X using the html param tag in between your object tag. Watch out though, because doing so will erase any parameters which were sent to the active-x in the background (like width and height). You will have to hard code these params in your html also, else the height and width of your active-x will be zero.

Once your active-x startes, the readproperties event will fire, in which you can read the passed through parameters from the propertybag.

Good luck!

Jordi Reineman
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top