04-06-2012, 04:57 AM
I am creating objects using this function.
How can retrieve the different Properties that the object has?
For example, how can I retrieve the "title" of a "BROWSER"?
Thanks!
Code:
For iLoop = 0 to (UBound(arrPV)-1)
Prop= Split(arrPV(iLoop),":=")(0)
Val= Split(arrPV(iLoop),":=")(1)
o(Prop).Value = Val
Next
How can retrieve the different Properties that the object has?
For example, how can I retrieve the "title" of a "BROWSER"?
Thanks!