Guest_imported
New member
- Jan 1, 1970
- 0
I'm trying to use a function to pass a value to an activeX control from a VBScript. The problem i run into is that in my VBScript i have:
Dim challengecopyobj
Dim challenge
challenge = "Hello"
Set challengecopyobj = CreateObject("clipboard3.GetCh"
challengecopyobj.GetCh(challenge)
and i keep getting the error that "Error: Object doesn't support this property or method: "challengecopyobj.GetCh(challenge)"
see my main concern is to be able to pass a value to an activeX control but i haven't been successful in doing that yet. Also i'm not using this VBScript in a HTML file. It is just a script that i'm creating for use of a telnet client. Most of the information online is all about webpage development using activeX and VBScript. Can anyone help me with this?
Kenji
Dim challengecopyobj
Dim challenge
challenge = "Hello"
Set challengecopyobj = CreateObject("clipboard3.GetCh"
challengecopyobj.GetCh(challenge)
and i keep getting the error that "Error: Object doesn't support this property or method: "challengecopyobj.GetCh(challenge)"
see my main concern is to be able to pass a value to an activeX control but i haven't been successful in doing that yet. Also i'm not using this VBScript in a HTML file. It is just a script that i'm creating for use of a telnet client. Most of the information online is all about webpage development using activeX and VBScript. Can anyone help me with this?
Kenji