Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[solved] speed up find accessible object
#1
Sometimes, I need to find accessible objects repeatedly in a HUGE webpage. It gets slower as it progresses down the page. Is there a way to speed this up? (I can't search in reverse).

Is there a way to mimic the way "find more" for ctrl-f works? eg it finds the next match. It doesn't look through the entire document again. It only looks "forward" so to speak.
#2
Sometimes can Navigate from one found object to another (sibling) object, but often quite much work to write such code.
Macro Macro2216
Code:
Copy      Help
Acc a
;...
a.Navigate("...")
#3
Or find common parent object, then
Macro Macro2216
Code:
Copy      Help
a.GetChildObjects

Or use callback function with a.Find.
#4
Thanks.


Forum Jump:


Users browsing this thread: 1 Guest(s)