VBScript -> OCX
<OBJECT CLASSID="clsid:B83857AE-98BA-4DF3-B41A-41945155F3D3" id=Test>
</OBJECT>
in this OCX conrol, i have a textbox named text1
with a HTML button, i want to change the content of this text box (text1), so i have something like that:
<script language="VBScript">
sub clicktest()
test.text1.text = "abc"
end sub
</script>
and, of course a button like that :
<input type="button" value="test" onClick="clicktest">
But this is not working. it is saying that test.text1.text is not an object.
I tried with text1.text only, with a form using document.TheForm.test.text1.text.. etc. etc... So how can i change de value of this text box?

