Jump to content

Recommended Posts

Posted (edited)

@asdf8,

small bug.

For reproduce:

  1. Use Test_2.au3
  2. Run script
  3. Press F5 for start execution
  4. Press F4 for pause
  5. Press F5 for continue - script start and pause again(!)

When use a button for same operations in _DBUG GUI instead of hotkeys script continue to execute normally.

Look like as a problem with a focusing of pause button.

Yeah...

Problem is here (line 1382)

Func DBGbtnBreak()
    GUICtrlSendMsg($DBGbtnBreak, $BM_CLICK, 0, 0)
    _GUICtrlButton_SetState($DBGbtnBreak)
EndFunc

After commenting line 1382 it is work as need.

Edited by valdemar1977
Add info
Posted (edited)
  On 3/9/2016 at 4:52 PM, asdf8 said:

New version:

  • Fixed detected the errors.

 

Dbug_2016.03.09.zip

Expand  

@asdf8 great, thank you!

Suggestion to add check for  buttons with hotkeys before sending BM_CLICK Msg. It will exclude a casual pressing hotkeys. For example at the moment when you press F4 twice during script running you will need to press  F5 twice to continue.

As an example

Func DBG_btnBreak()
    If GUICtrlGetState($DBG_btnBreak) = $GUI_SHOW+$GUI_ENABLE Then
        GUICtrlSendMsg($DBG_btnBreak, $BM_CLICK, 0, 0)
    EndIf
EndFunc

 

Edited by valdemar1977
Posted (edited)

@asdf8,

I will send you a source code of _DBUG for review via pm. If you will find that my modifications is useful please feel free to include them in next release.

Edited by valdemar1977
  • 2 weeks later...
Posted

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 Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

With the latest AutoIt Beta version I get the error shown in the attached screenshot. No problem with the AutoIt production release.

 

Best regards

Peppe

 

screen_20160325_184815.png

  • 2 months later...
Posted (edited)

Bugfix release:

  • "C:\Program Files (x86)\AutoIt3\UDF\_Dbug.au3" (1269) : ==> Subscript used on non-accessible variable.: error after exit (by Ctrl+F10 or Quit button) from executing script (in some cases) - fixed
  • Problem with parsing @ScriptLineNumber macros - fixed

 

Latest version always available here

Edited by valdemar1977

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...