tags:

views:

62

answers:

2

I'm attempting to learn VBA by reading through someone's code and understanding what happens every step of the way. However, I'm confused at to what these two elements are:

What is a HTMLSelectElement?
What is a HTMLInputElement?

+1  A: 

I assume they correspond to select and input HTML tags. A select tag is also called a drop-down list, and input tags can be used for multiple things (checkbox, radio button, text, password).

Matthew Flaschen
+4  A: 

See the W3C HTML Specs:

HTMLSelectElement

HTMLInputElement

scunliffe