Jump to content

Search the Community

Showing results for tags 'AssocArrays'.

  • 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. Somewhere out there is a UDF lib <AssocArrays.au3> Autoit v3.3.8.1 Unless I am doing something really stupid, it has a bug. Here is the repro, does anyone have a fix? I've attached the lib, it doesn't show a version number. #include <AssocArrays.au3> #include <ButtonConstants.au3> Global $consts AssocArrayCreate($consts,1) AssocArrayAssign($consts,'Left',$BS_LEFT) AssocArrayAssign($consts,'Right',$BS_RIGHT) AssocArrayAssign($consts,'Bottom',$BS_BOTTOM) AssocArrayAssign($consts,'Center',$BS_CENTER) AssocArrayAssign($consts,'DefPushButton',$BS_DEFPUSHBUTTON) AssocArrayAssign($consts,'MultiLine',$BS_MULTILINE) AssocArrayAssign($consts,'Top',$BS_TOP) AssocArrayAssign($consts,'VCenter',$BS_VCENTER) AssocArrayAssign($consts,'Icon',$BS_ICON) AssocArrayAssign($consts,'Bitmap',$BS_BITMAP) AssocArrayAssign($consts,'Flat',$BS_FLAT) AssocArrayAssign($consts,'Notify',$BS_NOTIFY); NOTE: Repeating this line will make it exist Inspect('Notify'); Says not exist, unexpected! Inspect('Flat');Exists Inspect('Top');Exists Func Inspect($test) If Not AssocArrayExists($consts,$test) Then MsgBox(0,$test,'Does not exist') Else MsgBox(0,$test,'Does exist') EndIf EndFunc AssocArrays.au3
×
×
  • Create New...