tim9525 Posted December 19, 2015 Posted December 19, 2015 Dear Members, I am trying to teach Autoit to recognize several features in the file names. I tried the following two different methods using IF.....Then statements. But, none of them work. Can anyone please help?TimMethod 1:If StringInStr($filename1, "plus2" ) > 0 Then ; check if the filename is right Elseif StringInStr($filename1, "212") > 0 Then Elseif StringInStr($filename1, "252") > 0 Then Sleep(300) WinActivate("EXCEL") WinWaitActive("EXCEL") Method 2:If StringInStr($filename1, "plus2" or "212" or "252") > 0 Then ; check if the filename is right Sleep(300) WinActivate("EXCEL") WinWaitActive("EXCEL")
water Posted December 19, 2015 Posted December 19, 2015 I would try:If StringInStr($filename1, "plus2" ) > 0 Or _ StringInStr($filename1, "212") > 0 Or _ StringInStr($filename1, "252") > 0 Then Sleep(300) WinActivate("EXCEL") WinWaitActive("EXCEL") EndIf My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
water Posted December 19, 2015 Posted December 19, 2015 BTW:To work with Excel I suggest you try the Excel UDF that comes with AutoIt. Automating the GUI is always a source of problems My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Factfinder Posted December 19, 2015 Posted December 19, 2015 If StringRegExp($filename1, "(?i)plus2|512|252") Then Sleep(300) WinActivate("EXCEL") WinWaitActive("EXCEL") EndIf
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now