MichaelK
May 16th, 2000, 11:11 PM
Hi,
for some reason, I can't add another option to my combo box. I have:
sub init()
oOption = document.createElement("OPTIONS")
oOption.text="Apples"
oOption.value="5"
FontName.options.add(oOption)
end sub
Where fontname is the name of the combo box and I want to add lets say "apples" to my list. I need to use VBScript BTW so I can use my activeX controls which need to interact with it. Anyone know what I'm doing wrong? thanks!
for some reason, I can't add another option to my combo box. I have:
sub init()
oOption = document.createElement("OPTIONS")
oOption.text="Apples"
oOption.value="5"
FontName.options.add(oOption)
end sub
Where fontname is the name of the combo box and I want to add lets say "apples" to my list. I need to use VBScript BTW so I can use my activeX controls which need to interact with it. Anyone know what I'm doing wrong? thanks!