aphesia Posted February 16, 2009 Share Posted February 16, 2009 could u post me the used UDF s? i got a error for: $WM_MENUSELECT and $WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS) should have the beta installed.. and also have the udf´s u unclided.. but no included .au3 has this parameters inside thanks Link to comment Share on other sites More sharing options...
KaFu Posted February 16, 2009 Share Posted February 16, 2009 Should be in <WindowsConstants.au3> now (AU-internal change). OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2024-Oct-20) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16) Link to comment Share on other sites More sharing options...
aphesia Posted February 16, 2009 Share Posted February 16, 2009 now i get a error @line 64: $PathLabel = GUICtrlCreateLabel("Reading Files : ",10 ,750 ,695,18,$SS_SUNKEN) variable set without being declared.. so ss_sunken i guess Link to comment Share on other sites More sharing options...
KaFu Posted February 17, 2009 Share Posted February 17, 2009 Au has undergone some changes since this program has be released. #include<StaticConstants.au3> If a const is not declared, always search the AU3 include files first, most of the time it's hidden there somewhere. OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2024-Oct-20) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16) Link to comment Share on other sites More sharing options...
ptrex Posted February 18, 2009 Author Share Posted February 18, 2009 @all Since many complain about errors when running. I added an updated version in the first post for AU3 - 3.2.13.13 and higher. regards ptrex Contributions :Firewall Log Analyzer for XP - Creating COM objects without a need of DLL's - UPnP support in AU3Crystal Reports Viewer - PDFCreator in AutoIT - Duplicate File FinderSQLite3 Database functionality - USB Monitoring - Reading Excel using SQLRun Au3 as a Windows Service - File Monitor - Embedded Flash PlayerDynamic Functions - Control Panel Applets - Digital Signing Code - Excel Grid In AutoIT - Constants for Special Folders in WindowsRead data from Any Windows Edit Control - SOAP and Web Services in AutoIT - Barcode Printing Using PS - AU3 on LightTD WebserverMS LogParser SQL Engine in AutoIT - ImageMagick Image Processing - Converter @ Dec - Hex - Bin -Email Address Encoder - MSI Editor - SNMP - MIB ProtocolFinancial Functions UDF - Set ACL Permissions - Syntax HighLighter for AU3ADOR.RecordSet approach - Real OCR - HTTP Disk - PDF Reader Personal Worldclock - MS Indexing Engine - Printing ControlsGuiListView - Navigation (break the 4000 Limit barrier) - Registration Free COM DLL Distribution - Update - WinRM SMART Analysis - COM Object Browser - Excel PivotTable Object - VLC Media Player - Windows LogOnOff Gui -Extract Data from Outlook to Word & Excel - Analyze Event ID 4226 - DotNet Compiler Wrapper - Powershell_COM - New Link to comment Share on other sites More sharing options...
goldenix Posted June 5, 2009 Share Posted June 5, 2009 I registered the Dll but it still says Comm error com object not registered My Projects:[list][*]Guide - ytube step by step tut for reading memory with autoitscript + samples[*]WinHide - tool to show hide windows, Skinned With GDI+[*]Virtualdub batch job list maker - Batch Process all files with same settings[*]Exp calc - Exp calculator for online games[*]Automated Microsoft SQL Server 2000 installer[*]Image sorter helper for IrfanView - 1 click opens img & move ur mouse to close opened img[/list] Link to comment Share on other sites More sharing options...
ptrex Posted June 6, 2009 Author Share Posted June 6, 2009 @goldenix Check if you registered the COM object correctly. Open the registry -> HK_Classes_Root -> Find Key "XStandard.MD5". If you don't find it, regester the COM object again. Rgds, ptrex Contributions :Firewall Log Analyzer for XP - Creating COM objects without a need of DLL's - UPnP support in AU3Crystal Reports Viewer - PDFCreator in AutoIT - Duplicate File FinderSQLite3 Database functionality - USB Monitoring - Reading Excel using SQLRun Au3 as a Windows Service - File Monitor - Embedded Flash PlayerDynamic Functions - Control Panel Applets - Digital Signing Code - Excel Grid In AutoIT - Constants for Special Folders in WindowsRead data from Any Windows Edit Control - SOAP and Web Services in AutoIT - Barcode Printing Using PS - AU3 on LightTD WebserverMS LogParser SQL Engine in AutoIT - ImageMagick Image Processing - Converter @ Dec - Hex - Bin -Email Address Encoder - MSI Editor - SNMP - MIB ProtocolFinancial Functions UDF - Set ACL Permissions - Syntax HighLighter for AU3ADOR.RecordSet approach - Real OCR - HTTP Disk - PDF Reader Personal Worldclock - MS Indexing Engine - Printing ControlsGuiListView - Navigation (break the 4000 Limit barrier) - Registration Free COM DLL Distribution - Update - WinRM SMART Analysis - COM Object Browser - Excel PivotTable Object - VLC Media Player - Windows LogOnOff Gui -Extract Data from Outlook to Word & Excel - Analyze Event ID 4226 - DotNet Compiler Wrapper - Powershell_COM - New Link to comment Share on other sites More sharing options...
Zedna Posted June 7, 2009 Share Posted June 7, 2009 (edited) Nice script ptrex!Because I used SQLite recently I have some optimization tips for you:- use indexes for SQL tables (for columns used in WHERE)- use BEGIN at start and COMMIT at end (without this each _SQLite_Exec will internally do commit transaction which slows down processing)- don't calculate $sFileDate,$sDateStamp for small skipped files (skipped due to size filter)- don't use Sleep (25) in main FOR NEXT loop - refresh progressbar and "Time Elapsed" only when it's neccessary --> avoid flicker/high CPU usage- do INSERT INTO Duplicates in batch --> collect INSERTs into string variable and and call _SQLite_Exec() less times- don't assign $DataCol = GUICtrlCreateListViewItem() --> it's not used- use _GUICtrlListView_BeginUpdate / _GUICtrlListView_EndUpdate --> smoother/quicker ListView display- don't do DROP TABLE at end of script --> it's not needed in case of memory DB- use _SQLite_GetTable2d() instead of _SQlite_Query + _SQLite_FetchData --> I think it will be faster for big result sets - see next post from Kafu - use optimized MD5 hash calculation code --> search forum for examples http://www.autoitscript.com/forum/index.ph...st&p=687067http://www.autoitscript.com/forum/index.ph...st&p=557689See attached optimized version of your script (except MD5 code - it's original untouched, and also _SQLite_GetTable2d not used).Note I didn't run it so it's not tested yet.I like that idea (search for duplicates this way) very much so I will rewrite also MD5 hash later probably and I will test it.DuplicateFiles_MD5_SQL_New_pz.au3 Edited June 7, 2009 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
Zedna Posted June 7, 2009 Share Posted June 7, 2009 (edited) Also another possible speed optimizations: - skip small files (according to filter for size) already inside _FileListToArrayEx() - _FileListToArrayEx() --> there are too many Redim statements inside FOR loops --> it should be before loop because Redim is relatively slow operation Edited June 7, 2009 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
KaFu Posted June 7, 2009 Share Posted June 7, 2009 - use _SQLite_GetTable2d() instead of _SQlite_Query + _SQLite_FetchData --> I think it will be faster for big result setsI don't think so, In SMF the usage of _SQLite_GetTable2d() was in fact a large performance issue, and I switched back to use _SQlite_Query + _SQLite_FetchData to create my own array. OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2024-Oct-20) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16) Link to comment Share on other sites More sharing options...
Zedna Posted June 7, 2009 Share Posted June 7, 2009 (edited) I don't think so, In SMF the usage of _SQLite_GetTable2d() was in fact a large performance issue, and I switched back to use _SQlite_Query + _SQLite_FetchData to create my own array.Interesting info.In fact I used only _SQLite_GetTable2d() for small result sets in my project without any speed problems so my above presumption was based only on idea that one DllCall should be faster than many DllCalls in cycle.EDIT: Coincidentally my project was for searching duplicates too.But it was for searching duplicate objects stored inside PowerBuilder's PBL libraries (163 files with 550 MB size in summary containing 21 000 objects).Firstly I used my own AutoIt's array to collect/search object names/sizes/dates but this way searching lasted 35 minutes.After redesigning to use SQLite (memory database with indexes) it lasts only 20 seconds!!So SQLite is really awesome in some cases. Edited June 7, 2009 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
Zedna Posted June 7, 2009 Share Posted June 7, 2009 (edited) Other issues of your project: - I use 1024x768 resolution and your GUI is too big - After closing About window by [X] button also main window closes Edited June 7, 2009 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
ptrex Posted June 7, 2009 Author Share Posted June 7, 2009 @Zedna, Good to see that you debugging my old version Which I left long time ago. And switch over to a build-in MD5 Hash version. Anyhow some of your suggestions are valid, others are not. I am interested to see what your new version has to bring. Regards, ptrex Contributions :Firewall Log Analyzer for XP - Creating COM objects without a need of DLL's - UPnP support in AU3Crystal Reports Viewer - PDFCreator in AutoIT - Duplicate File FinderSQLite3 Database functionality - USB Monitoring - Reading Excel using SQLRun Au3 as a Windows Service - File Monitor - Embedded Flash PlayerDynamic Functions - Control Panel Applets - Digital Signing Code - Excel Grid In AutoIT - Constants for Special Folders in WindowsRead data from Any Windows Edit Control - SOAP and Web Services in AutoIT - Barcode Printing Using PS - AU3 on LightTD WebserverMS LogParser SQL Engine in AutoIT - ImageMagick Image Processing - Converter @ Dec - Hex - Bin -Email Address Encoder - MSI Editor - SNMP - MIB ProtocolFinancial Functions UDF - Set ACL Permissions - Syntax HighLighter for AU3ADOR.RecordSet approach - Real OCR - HTTP Disk - PDF Reader Personal Worldclock - MS Indexing Engine - Printing ControlsGuiListView - Navigation (break the 4000 Limit barrier) - Registration Free COM DLL Distribution - Update - WinRM SMART Analysis - COM Object Browser - Excel PivotTable Object - VLC Media Player - Windows LogOnOff Gui -Extract Data from Outlook to Word & Excel - Analyze Event ID 4226 - DotNet Compiler Wrapper - Powershell_COM - New Link to comment Share on other sites More sharing options...
Rose Posted June 17, 2009 Share Posted June 17, 2009 It is an interesting message. I have a question. Now I use Clone Remover to find images and music files duplicates What are the differences in these two programmes and how can I use the one from this article? Thank you. Link to comment Share on other sites More sharing options...
ptrex Posted June 21, 2009 Author Share Posted June 21, 2009 @RoseWhat are the differences in these two programmesI can"t tell the differences. Since there is very limited info on how the Clone Remover tool works, on the site.how can I use the one from this article?Just read the first topic on how to get started.You need to download the MD5 COM object from the site mentioned there. And follow the installation instructions,Then run the au3 script, open a folder, start it, and see what duplicates appear.regards,ptrex Contributions :Firewall Log Analyzer for XP - Creating COM objects without a need of DLL's - UPnP support in AU3Crystal Reports Viewer - PDFCreator in AutoIT - Duplicate File FinderSQLite3 Database functionality - USB Monitoring - Reading Excel using SQLRun Au3 as a Windows Service - File Monitor - Embedded Flash PlayerDynamic Functions - Control Panel Applets - Digital Signing Code - Excel Grid In AutoIT - Constants for Special Folders in WindowsRead data from Any Windows Edit Control - SOAP and Web Services in AutoIT - Barcode Printing Using PS - AU3 on LightTD WebserverMS LogParser SQL Engine in AutoIT - ImageMagick Image Processing - Converter @ Dec - Hex - Bin -Email Address Encoder - MSI Editor - SNMP - MIB ProtocolFinancial Functions UDF - Set ACL Permissions - Syntax HighLighter for AU3ADOR.RecordSet approach - Real OCR - HTTP Disk - PDF Reader Personal Worldclock - MS Indexing Engine - Printing ControlsGuiListView - Navigation (break the 4000 Limit barrier) - Registration Free COM DLL Distribution - Update - WinRM SMART Analysis - COM Object Browser - Excel PivotTable Object - VLC Media Player - Windows LogOnOff Gui -Extract Data from Outlook to Word & Excel - Analyze Event ID 4226 - DotNet Compiler Wrapper - Powershell_COM - New Link to comment Share on other sites More sharing options...
Rose Posted June 26, 2009 Share Posted June 26, 2009 (edited) I used to delete duplicate files duplicate music finder, which is called Clone Remover. What is your opinion about it? Edited June 26, 2009 by Rose Link to comment Share on other sites More sharing options...
Markhugy2 Posted December 2, 2010 Share Posted December 2, 2010 I get an error on _GUICtrlListViewSetColumnWidth...How com?Here is a good tool to find and delete duplicate fileswww.duplicateFilesDeleter.com Link to comment Share on other sites More sharing options...
Cposture Posted July 3, 2011 Share Posted July 3, 2011 well done Link to comment Share on other sites More sharing options...
Kara89r Posted February 7, 2012 Share Posted February 7, 2012 Duplicate Files Finder - MD5 Hash CheckSum Someone in the support forum was pointing to the Xstandard MD5 Hash COM object. For those of you who don't know what a MD5 Hash CheckSum is : Well this would be an example on how to use the CheckSum to find duplicated files or Scripts on your system : Download here XStandard - MD5 Com Object This small application is my first using the new syntax of 3.2.9.10. It contains most of the extensive functionality that AU3 has to offer : - DLLCalls - SQL - In Memory Database - COM object - RegisterMsg - Native AU3 functions - ... DuplicateFiles_MD5_SQL_New.au3 Free Duplicate File Finder Au3 - 3.2.13.13 version and higher DuplicateFiles_MD5_SQL_New.au3 The speed of the application is more than reasonable. It even scans your server if needed. Enjoy finding duplicate scripts, audio, zip, exe, ... files Enjoy !! regards, ptrex @Polyphem You need to have the SQLite DLL avaiable on the machine that runs the code. Best way is to have the DLL somewhere in the Windows root folder. This will solve your problem. @JamesB Indead !! Since almost anything is accessible through SQL these day. And it won't be long before the OS will support native SQL. So you better get used to it. regards, ptrex __________________________________________________ Thanks For This Useful Info.... Link to comment Share on other sites More sharing options...
peterson Posted June 7, 2017 Share Posted June 7, 2017 For a duplicate files finder, Duplicate Files Deleter is one of the good software. It will give you a comprehensive list of all those files and you can decide for yourself what you want to do with them. It's easy to use. Hope it will help you. 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