Jump to content

Search the Community

Showing results for tags 'recursion level array'.

  • 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. Heya, I've made a solution to a problem that seems to works, but i'm affraid the recursion level will be exceeded... I'd be most greatfull if someone helped me alter the script to avoid just that. Dim $queue[9999] resetqueue() While 1 Do $Client = TCPAccept($Server) Sleep('100') Until $Client <> '-1' Do $Recv = TCPRecv($Client, '1000') Sleep('100') Until $Recv <> '' $RecvArray = StringSplit($Recv, "|") If $RecvArray[1] = "queue_item" Then $queue[$RecvArray[2]] WEnd Func resetqueue() $iDateCalc = _DateDiff('s', _NowCalc(), _DateAdd('d', 1, _NowCalcDate())&" 00:00:00") AdlibRegister("resetqueue", $iDateCalc*1000) Dim $queue[9999] _FileWriteLog("log.txt", "Queue reset", 0) sleep(1000) EndFunc
×
×
  • Create New...