Connecting Tech Pros Worldwide Forums | Help | Site Map

trouble with onchange event

Dudely
Guest
 
Posts: n/a
#1: Oct 9 '08
I'm not sure where to go with this question so I thought I'd try this
group.

I'm having some trouble with the following VBA code. The varTags
variable is sometimes empty, and sometimes it has what it's supposed
to have. I always use the same set of pages to test.

I thought maybe the page needed time to load, so I added in
Do While obIe.Busy & Do While obIe.readyState <>4
DoEvents loops after the onchange call, but they had no effect.

The onchange call does in fact load the expected page, it's the line
of code afterwards that doesn't always work. Any ideas?

Thank you

Public Function submitDropDownData(IeDoc As Object, obIe As Object,
elementToSelect As Long, elementValue As String, ID As String)
Dim el As Object
Dim varTags as Variant
Dim tagType as String

tagType="td"

Set el = IeDoc.getElementsByName(ID)
el(0).children(elementToSelect).Selected = True
el(0).children(elementToSelect).Value = elementValue
el(0).onchange

Set varTags = IeDoc.getElementsByTagName(tagType)


Adrienne Boswell
Guest
 
Posts: n/a
#2: Oct 9 '08

re: trouble with onchange event


Gazing into my crystal ball I observed Dudely <ab3331@gmail.comwriting in
news:4528c64b-cfcf-4c2b-9436-99586d179159@f63g2000hsf.googlegroups.com:
Quote:
I'm not sure where to go with this question so I thought I'd try this
group.
>
I'm having some trouble with the following VBA code. The varTags
variable is sometimes empty, and sometimes it has what it's supposed
to have. I always use the same set of pages to test.
>
This group is for discussion of authoring client side HTML, so your post is
off topic here. You would be better off looking for one of the
microsoft.public... groups.

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Closed Thread