Jump to content

Recommended Posts

Posted (edited)

Hey, I was wondering is there any way/function to count how many times a loop has executed and then display the chainging on a GUI?

any help? im new to autoit, Tried search for answer but couldn't find any.

thanks,

Edited by gagaga
Posted

Hey, I was wondering is there any way/function to count how many times a loop has executed and then display the chainging on a GUI?

any help? im new to autoit, Tried search for answer but couldn't find any.

thanks,

Some example code might have helped but this will give you the general idea.

$iCount = 0
Do
    _Callsomefunc()
    $iCount += 1
Until $iCount = 6

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Posted (edited)

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

Example1()

; example 1
Func Example1()
    Local $msg

    GUICreate("My GUI"); will create a dialog box that when displayed is centered
    $btnCount = GUICtrlCreateButton("Count",10,10)
    GUICtrlCreateLabel("Counter: ", 10,50)
    $labelCounter = GUICtrlCreateLabel("",60,50,80)
    GUISetState(@SW_SHOW)   

; Run the GUI until the dialog is closed
    While 1
        $msg = GUIGetMsg()
        if $msg = $btnCount Then
            for $i = 1 To 10
                GUICtrlSetData($labelCounter,$i)
                sleep(1000)
            Next
        EndIf
        If $msg = $GUI_EVENT_CLOSE Then ExitLoop
    WEnd
    GUIDelete()
EndFunc;==>Example1

Edited by notta

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
×
×
  • Create New...