
Jscript translation to VBscript
Hi Alex,
Quote:
> Try "nothing" instead of "null".
Thank you very much.
But it doesent work anyway :-(
Maybe someone else has an other idea?
Here is the line I want to translate into VBscript:
Quote:
> > document.form1.dropdown1.options[2] = null;
I tried:
document.form1.dropdown1.options(2) = Null
document.form1.dropdown1.options(2) = Nothing
Set document.form1.dropdown1.options(2) = Nothing
Martin