08-08-2012, 08:47 PM
When I try:
Then
I get a run error of:
Type mismatch: '[string: "STATEMENTS - PMA"]'
Function file: O:\QTP_Tests\NightlyRegressionTesting\Tests\LibraryImageAccessFunctions.qfl
Line (639): "If ZipDialogName = "SECURITIES BACKED LINE OF CREDIT - HISTORICAL" or "STATEMENTS - PMA" Then".
Must I only use:
thx for your ideas.
Code:
If ZipDialogName = "SECURITIES BACKED LINE OF CREDIT - HISTORICAL" or "STATEMENTS - PMA"
I get a run error of:
Type mismatch: '[string: "STATEMENTS - PMA"]'
Function file: O:\QTP_Tests\NightlyRegressionTesting\Tests\LibraryImageAccessFunctions.qfl
Line (639): "If ZipDialogName = "SECURITIES BACKED LINE OF CREDIT - HISTORICAL" or "STATEMENTS - PMA" Then".
Must I only use:
Code:
If ZipDialogName = "SECURITIES BACKED LINE OF CREDIT - HISTORICAL" or ZipDialogName = "STATEMENTS - PMA" Then
thx for your ideas.