09-12-2011, 08:54 PM
From an Excel file, I have imported 15 Report Names, all work in my code except the following two.
In my code I use the following to click on the link.
My variable list durring debug shows the full link name but the link (which is visiasble and exactly the same as the other 11) are not found to Click.
Could I be not finding the link due to the ( )?
If so, how can I better code to find these two links?
Thx everyone for looking.
Code:
WFI STATEMENTS BY WFA ACCOUNT (020/205)
WFI STATEMENTS BY WFA ACCOUNT (206)
In my code I use the following to click on the link.
Code:
ReportName = objDriverSheet.Cells(r,4).
Browser("W").Page("WIA").Frame("parent").Link("name:="& ReportName, "abs_x:="&absX, "abs_y:="&absY).Click
My variable list durring debug shows the full link name but the link (which is visiasble and exactly the same as the other 11) are not found to Click.
Could I be not finding the link due to the ( )?
If so, how can I better code to find these two links?
Thx everyone for looking.