03-29-2010, 09:04 PM
Hi Ankur,
I found very interesting and helpfull tips here but this time it seems a little bit hard for me to find the answer on my own.
My scripts purpose is to fullfill a .xls file (OK/KO) while testing its values with those that appear on a website.
I have a "General run error" = 2147467259 when any of these 2 statements are executed :
1)
2)
The error seems to happen when about 9000 lines from my xls file are processed, which make me think to some kind of overflow/memory error.
Could you (or anyone here) help me with this ??
Thanks in advance
Alain
I found very interesting and helpfull tips here but this time it seems a little bit hard for me to find the answer on my own.
My scripts purpose is to fullfill a .xls file (OK/KO) while testing its values with those that appear on a website.
I have a "General run error" = 2147467259 when any of these 2 statements are executed :
1)
Code:
Chaine = cElements(0).GetROProperty("innertext")
with
Set wElement=Description.Create()
wElement("micclass").Value="WebElement"
wElement("class").Value="PSSRCHEDITBOXLABEL"
Set cElements=Browser().Page().PSFrame().ChildObjects(wElement)
2)
Code:
Chaine = cComps(n).GetROProperty("innertext")
with
Set cComp=Description.Create()
cComp("micclass").Value="WebElement"
cComp("class").Value="PSTEXT"
Set cComps=Browser().Page().PSFrame().ChildObjects(cComp)
The error seems to happen when about 9000 lines from my xls file are processed, which make me think to some kind of overflow/memory error.
Could you (or anyone here) help me with this ??
Thanks in advance
Alain