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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

this object doesn't support this property or method

Status
Not open for further replies.

RedDevil2001

Technical User
Mar 9, 2001
10
NL
Some times, when attempting to run some Application on line, a Script Error with the following message pops-up:

this object doesn't support this property or method

Does anybody what does this mean, and what is the 'object'?

Thanks,


R.D.
 
RD,
A HTML page with some Javascript/ VBScript programs can work with form elements, aka 'objects'.

EG

<form name=TEST>
<input type=text name=Field1>
</form>

A script can change the value of this field:
document.TEST.field1.value = 'This is an example'

Not all properties/ methods apply to all objects and of course a syntax-error is possible:
document.TEST.field1.waarde = 'This is an example'

will not work, because 'waarde' is unknown to the script engine (it's the dutch word for 'value').


br
Gerard

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top