Jump to content

Search the Community

Showing results for tags 'OnAutoitError'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. First I want to thanks to: @Mhz for this scirpt: ?do=embed' frameborder='0' data-embedContent>'?do=embed' frameborder='0' data-embedContent> title="">?do=embed' frameborder='0' data-embedContent> Secondly I want to thanks to: @trancexx for this scirpt: '?do=embed' frameborder='0' data-embedContent> title=""> HOW IT WORKS First you need build/compile script "Variable_list.au3" This "Variable_list.exe" must be in the same folder as your script. "DumpDebuging.au3" is a UDF file, must be in the same folder as your script, and you must include them into your script, like this: #include "DumpDebuging.au3" EDIT 2013/10/02: to your program you must add, this part : #AutoIt3Wrapper_Run_Before=Variable_list.exe %in% it uses the "Variable_list.exe" on a script that invoked it. EDIT 2013/10/02: "You must compile your program to use this AutoIt3Wrapper directive" "Variable_list.exe" It analyzes the calling script, finds global variables and creates a list: #region Global and Local "Variable List Declaration" Global $_sGlobalVariableList = "" $_sGlobalVariableList &= "$array|$binary|$bool|$false|$float|" $_sGlobalVariableList &= "$hex|$hwnd|$int|$keyword|$number|" $_sGlobalVariableList &= "$ptr|$string|$struct|$true" #endregion Global and Local "Variable List Declaration" In addition, for each Functions, add the following call: _Func_Start("Function Name") _Func_End("Function Name") Example of use presents "test_DumpDebuging.au3" EDIT 2013/10/02: to use this example you must compile them (required to use AutoIt3Wrapper directive) Compared with the previous version, which can be found here: ?do=embed' frameborder='0' data-embedContent>'?do=embed' frameborder='0' data-embedContent> title="">?do=embed' frameborder='0' data-embedContent> This script contains a number of changes, including changes in the naming of variables and functions. In addition, several new features were added, and remodeling general behavior. That is why I decided to create a separate thread in this part of the forum. EDIT 2013/10/01: attached files have been modified, just cleaned. EDIT 2013/10/03: attached files have been modified, removed bug and added UDF Header Description. EDIT 2013/10/07 20:59: Updated: "Variable_list.au3": Improved way of adding function calls: _Func_Start ("Function Name") _Func_End ("Function Name") DumpDebuging.au3 test_DumpDebuging.au3 Variable_list.au3
×
×
  • Create New...