Iczer Posted September 25, 2013 Share Posted September 25, 2013 I made some function to open file-containing folder in Windows Explorer, make sure file is visible and select it. (WinXP) but it seems i cannot get it work - $iIndex is always "-1" #include <GuiListView.au3> _LocateFileInCatalog(@SystemDir & "\freecell.exe") Func _LocateFileInCatalog($path) Local $fileName = StringRegExpReplace($path,'^.*\\','') Local $folderName = StringRegExpReplace($path,'\\[^\\]*$', '') Run(@WindowsDir & "\explorer.exe /e, " & $folderName) Local $hExplorer = WinWaitActive($folderName, "", 8) Local $hLWExp = ControlGetHandle($hExplorer, "", "[CLASS:SysListView32;INSTANCE:1]") ;Local $iIndex = _GUICtrlListView_FindText($hLWExp, $fileName) Local $iIndex = _GUICtrlListView_FindInText($hLWExp, $fileName) _GUICtrlListView_EnsureVisible($hLWExp, $iIndex) _GUICtrlListView_SetItemSelected($hLWExp, $iIndex, True, False) EndFunc What i'm doing wrong? Link to comment Share on other sites More sharing options...
mLipok Posted September 25, 2013 Share Posted September 25, 2013 $sParam = '/select,"' & @SystemDir & '\charmap.exe"' ConsoleWrite($sParam & @CRLF) ShellExecute(@WindowsDir & '\explorer.exe', $sParam) Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24 Link to comment Share on other sites More sharing options...
BugFix Posted September 25, 2013 Share Posted September 25, 2013 Thats all, what you need for this Run("Explorer /select," & "Your_Path") Best Regards BugFix Link to comment Share on other sites More sharing options...
mLipok Posted September 25, 2013 Share Posted September 25, 2013 if you want to use Run() perhaps that is better: Run('Explorer /select,"' & $fFilePath &'"') ps. I used ShellExecute() specifically, to show with a ConsoleWrite(), how parameter should look like. Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24 Link to comment Share on other sites More sharing options...
Iczer Posted September 25, 2013 Author Share Posted September 25, 2013 Thanks! It seems i overcomplicated task Link to comment Share on other sites More sharing options...
davidacrozier Posted March 31, 2017 Share Posted March 31, 2017 Newbie alert!! If it is wrong to respond to old threads, then I apologize in advance. I have taken the script that Iczer started (above) and attempted to expand on it. What I am trying to do is to use Windows Explorer GUI to perform repetitive tasks that require the use of the Windows GUI. The intent of the script is to obtain either the mouse position of the file in order to double click on it or to be able to select the file to copy to another folder. Obtaining the mouse pointer to the file did not work (I think) because I did not use the GUICreate within Autoit to create the Windows Explorer window. This second attempt is to select the file from a list(ing) of the directory on the screen. The problem encountered is that the index variable never gets initialized with the index value. If the Windows OS process is understood correctly, there is a windows handle/pointer to the Windows Explorer Screen, a handle/pointer to the menu item on the Windows Explorer screen named [CLASS:DirectUIHWND; INSTANCE:3], and a system handle/pointer to the ??Windows Explorer menu handle??. Not really sure about the last one. The Class name was determined by the use of the Autoit v3 Window Info Tool. Would someone please explain the difference in the handle/pointers mentioned above? Is this function beyond the range of Autoit functionality? Many thanks in advance for your help. GetItemSelected.au3 Link to comment Share on other sites More sharing options...
spudw2k Posted March 31, 2017 Share Posted March 31, 2017 (edited) Not to detract for your question...but if the ultimate goal is to copy files there are much better way to do so (using AutoIt) than manipulating the Windows Explorer GUI. We might be able to make better recommendations if you can elaborate on what the end goal is. To get back to your question, many UDFs (User Defined Functions) are included with AutoIt (_GUICtrl*). These functions are designed to work with non-AutoIt GUIs. In theory there is nothing intrinsic about what you want to do that can't be done with AutoIt. Sorry it's not a direct solution, but if you search the forums for Explorer, I'm sure you'll find topics of use if that is really what you need to do to automate your task. BTW: necro-posting is generally frowned upon, particularly if you are expecting an answer from someone who hasn't visited the forums in a long time--not the case here, but just wanted to let you know since you mentioned posting on an old thread. Edited March 31, 2017 by spudw2k davidacrozier 1 Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
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