valdemar1977 Posted August 18, 2015 Share Posted August 18, 2015 (edited) Update+ Clear expression list button (delete all expressions in one click)+ F4 - key is now assigned to pause button+ DBUG Console optimized+ Small help added and assigned on F1 key- fixed small bug with expressions list population Dbug 17.08.15.zip Edited October 3, 2015 by valdemar1977 Sorry unstable release. Please use previous version 17.08.15 Link to comment Share on other sites More sharing options...
DarkwarlorD Posted August 18, 2015 Share Posted August 18, 2015 Great work, @valdemar1977Just to make more clear we can put some extra variables to be showed on DBUG ... I did a little modification just to test and seems good ... take a look:#include <DBUG.au3> HotKeySet("{ESC}", "Close") Main() Func Main() ProgressOn("DBUG Test", "Testing the AutoIt DBUG", "Counting") For $i = 0 To 10 $prog = $i * 10 $last = 10 - $i ProgressSet($prog, $last & " to 10") Sleep(500) Next #Region STOP DBUG ProgressSet(100, "DONE", "Test Finished") Sleep(200) ProgressOff() #Region START DBUG EndFunc Func Close() Exit 0 EndFunc ;==>CloseJust 2 new vars to be checked on Debugger And I'm glad you have used my code Link to comment Share on other sites More sharing options...
pseakins Posted August 18, 2015 Share Posted August 18, 2015 Would it be a good idea to include the current version number as a comment (ie., ;ver 17.08.15) near the top of Dbug.au3 so we can quickly see what version we have installed? Phil Seakins Link to comment Share on other sites More sharing options...
valdemar1977 Posted August 18, 2015 Share Posted August 18, 2015 (edited) Update+ Clear expression list button (delete all expressions in one click)+ F4 - key is now assigned to pause button+ DBUG Console optimized (long path also supported now)+ Small help added and assigned on F1 key- fixed small bug with expressions list population- automatic state loading fixed and improved Great work, @valdemar1977Just to make more clear we can put some extra variables to be showed on DBUG ... I did a little modification just to test and seems good ... take a look:#include <DBUG.au3> HotKeySet("{ESC}", "Close") Main() Func Main() ProgressOn("DBUG Test", "Testing the AutoIt DBUG", "Counting") For $i = 0 To 10 $prog = $i * 10 $last = 10 - $i ProgressSet($prog, $last & " to 10") Sleep(500) Next #Region STOP DBUG ProgressSet(100, "DONE", "Test Finished") Sleep(200) ProgressOff() #Region START DBUG EndFunc Func Close() Exit 0 EndFunc ;==>CloseJust 2 new vars to be checked on Debugger And I'm glad you have used my code Added to archive as example, thank you. Would it be a good idea to include the current version number as a comment (ie., ;ver 17.08.15) near the top of Dbug.au3 so we can quickly see what version we have installed?Done. Added header to script, also you can see DBUG version in the DBUG window title (ver. xx.xx.xx). Dbug 18.08.15.zip Edited October 3, 2015 by valdemar1977 Changed archive Link to comment Share on other sites More sharing options...
valdemar1977 Posted August 19, 2015 Share Posted August 19, 2015 Update- Small optimization+ Added README file to archive+ Changed example file (now include example of console output) Dbug 19.08.15.zip Link to comment Share on other sites More sharing options...
valdemar1977 Posted August 26, 2015 Share Posted August 26, 2015 (edited) Update+ Tabbed interface+ Accelerators optimization (F1 - disabled (use help is separate tab), Ctrl-I, Ctrl-Q - now only work when DBUG window is in focus for fixing interfere with SciTE, Ctrl-X now changed on Del)+ Small optimizations- Expressions list edit bug fix Dbug 26.08.15.zip Edited August 26, 2015 by valdemar1977 Link to comment Share on other sites More sharing options...
valdemar1977 Posted August 28, 2015 Share Posted August 28, 2015 Update (please replace all files in IMAGES dir also)Array table viewer in separate window (changed edit button to Array Viewer, for edit name of the expression use mouse click), it is possible to setup range before visualization (using syntax of _ArrayDisplay) Changed accelerators (check in the README or help)During the edit of expression name in ListView Esc key will cancel all modification (as usual in windows)Button Run|Resume now changing icon and button tips during execution of DBUGChanged fontsize helpSmall modifications in DBUG_Example.au3 fileSmall optimiztionsDbug 28.08.15.zip Link to comment Share on other sites More sharing options...
DarkwarlorD Posted August 31, 2015 Share Posted August 31, 2015 Man, your work is incredible!You really improved the original Link to comment Share on other sites More sharing options...
valdemar1977 Posted September 1, 2015 Share Posted September 1, 2015 UpdateOptimizing speed when debugging huge arrays. Now DBUG show array values in SciTE window tips very quickly.Array viewer now opening on the top of windows (you need to replace standard Array.au3 UDF with my custom in AutoIt Include dir. All my changes marked with ;valdemar1977 comment on the end. Shortly _ArrayDisplay func now have a flag for start GUI on top of windows ($WS_EX_TOPMOST). Of course you can still using a default Array.au3, but ArrayDisplay will start in the back of the windows.Console optimized for display all messages (remove sleep(10) from loop). Now Console utilized more CPU, but without skip some messages from StdOut.Some small optimizations Dbug 01.09.15.zip Link to comment Share on other sites More sharing options...
pseakins Posted September 4, 2015 Share Posted September 4, 2015 May I suggest that the readme be named Dbug_Readme.txt instead of README.TXT. With the suggested name the script, example and readme would be all side-by-side when viewed in explorer, removing any doubt as to their purpose and relationship.Keep up the good work! Phil Seakins Link to comment Share on other sites More sharing options...
pseakins Posted September 4, 2015 Share Posted September 4, 2015 (edited) Dbug 01.09.15.zip contains a modified version of Array.au3 which causes my code to fail with;"C:\Program Files (x86)\AutoIt3\Include\Array.au3"(751,188) : warning: $WS_EX_TOPMOST: possibly used before declaration."C:\Program Files (x86)\AutoIt3\Include\Array.au3"(751,188) : error: $WS_EX_TOPMOST: undeclared global variable.PS. Since posting the above I have found the modified Array.au3 needs this additional line;#include "WindowsConstants.au3" Edited September 4, 2015 by pseakins Extra information, solution. Phil Seakins Link to comment Share on other sites More sharing options...
valdemar1977 Posted September 5, 2015 Share Posted September 5, 2015 (edited) Dbug 01.09.15.zip contains a modified version of Array.au3 which causes my code to fail with;"C:\Program Files (x86)\AutoIt3\Include\Array.au3"(751,188) : warning: $WS_EX_TOPMOST: possibly used before declaration."C:\Program Files (x86)\AutoIt3\Include\Array.au3"(751,188) : error: $WS_EX_TOPMOST: undeclared global variable.PS. Since posting the above I have found the modified Array.au3 needs this additional line;#include "WindowsConstants.au3" i know about this bug, thanx.new version of dbug do not need a modified version of Array.au3, share it today or tommorow.all functionality included inside of the main script. Sorry for inconvenience. Edited September 5, 2015 by valdemar1977 Link to comment Share on other sites More sharing options...
valdemar1977 Posted September 5, 2015 Share Posted September 5, 2015 (edited) UpdateDo not need to replace standard Array.au3 anymore. You can rollback to original version of udf now. All functionality now included in dbug script.Dbug and console windows doesn't create an icon on the task bar.Some optimizationsDbug 06.09.15.zip Edited September 6, 2015 by valdemar1977 Link to comment Share on other sites More sharing options...
draconem Posted September 5, 2015 Share Posted September 5, 2015 Amazing job, great tool...#include <GuiToolTip.au3>Code above is missing in the last update. Link to comment Share on other sites More sharing options...
pseakins Posted September 6, 2015 Share Posted September 6, 2015 (edited) >GuiToolTip.au3 is present in the latest AutoIt update 3.3.14.0Edited: What I should have said is, this is a similar issue to post #71 above. As draconem says, Dbug.au3 needs GuiToolTip included. Edited September 6, 2015 by pseakins Original post not relevant Phil Seakins Link to comment Share on other sites More sharing options...
valdemar1977 Posted September 6, 2015 Share Posted September 6, 2015 (edited) confirmed, guys. thank you.problem is that customized by @Yashied version of SciTE do not show any errors or warnings in this case. in future will double check with original version of SciTE.fixed version included, please check. Dbug 06.09.15.zip Edited September 6, 2015 by valdemar1977 Link to comment Share on other sites More sharing options...
valdemar1977 Posted September 29, 2015 Share Posted September 29, 2015 (edited) UpdateSome optimizationsSaving previously entered array display rangeDbug 28.09.15.zip Edited September 29, 2015 by valdemar1977 Change archive file draconem 1 Link to comment Share on other sites More sharing options...
gcriaco Posted October 2, 2015 Share Posted October 2, 2015 The error in the attached screenshot occurs with the latest Dbug version: Best regardsPeppe Link to comment Share on other sites More sharing options...
valdemar1977 Posted October 3, 2015 Share Posted October 3, 2015 Updatesome small fixes Dbug 03.10.15.zip Link to comment Share on other sites More sharing options...
valdemar1977 Posted October 3, 2015 Share Posted October 3, 2015 @gcriaco, hi. Sorry for delay.Cannot reproduce bug in my case, but made some fixes.Try new version. If you still have a bug share you script and detailed instructions how reproduce a bug. 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