Link to home
Start Free TrialLog in
Avatar of crisoft
crisoft

asked on

ActiveX - <param name...>

How can I use, within an ActiveX Control, the data introduced with <param name...> from the HTML document?

thanks
crisoft
Avatar of TheFly
TheFly

crisoft,

the <param name...> will pass a value to a public property within the ActiveX control.

In your ActiveX control -
  declare a public Let/Get property

  within the Let property assign the argument value to a modular level variable.

Hope this helps.

Toodle pip.
Avatar of crisoft

ASKER

Can you give me a small example? I can´t understand your explanation.
Avatar of crisoft

ASKER

Can you give me a small example? I can´t understand your explanation.
-----------------------------7d0262164f8
Content-Disposition: form-data; name="qid"

10318689
-----------------------------7d0262164f8
Content-Disposition: form-data; name="Submit"

Submit
-----------------------------7d0262164f8--
ASKER CERTIFIED SOLUTION
Avatar of TheFly
TheFly

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks, TheFly. Your solution also helps me in sorting out the problem. Cheers :)