Jump to content

How to trigger functions immediately


gahhon
 Share

Recommended Posts

Example code:

; THư viện không thể thiếu
#include <WinAPI.au3>
#include <WinAPIShellEx.au3>

Global $OldProc

; Đăng kí hàm Callback phụ, với tên hàm là NextProc, các parameter thì để y nguyên hoặc tham khảo trên MSDN nhé
Global $hDll = DllCallbackRegister("NextProc", "ptr", "hwnd;uint;long;ptr")
; Get Pointer (C/C++ cân tất =]])
Global $pDll = DllCallbackGetPtr($hDll)

; Tạo một GUI traditional củ chuối...
Global $hGUI = GUICreate("Test", 200, 60)

; Tạo 2 button để test để Set và Remove Subclass
Global $Btn1 = GUICtrlCreateButton("Subclass", 15, 25, 75, 25)
Global $Btn2 = GUICtrlCreateButton("Remove", 110, 25, 75, 25)

; Set Callback phụ
$OldProc = _WinAPI_SetWindowLong($hGUI, $GWL_WNDPROC, $pDll)

; Có dòng này để GUI hiện lên chứ, hoặc không cần nếu set $WS_VISIBLE cho style
GUISetState(@SW_SHOW)

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case -3 ; Thoát
            GUIDelete()
            DllCallbackFree($hDll)
            Exit
        Case $Btn1

        Case $Btn2

    EndSwitch
WEnd

;Callback function phụ: NextProc
Func NextProc($hWnd, $iMsg, $wParam, $lParam, $iID, $pData)
    ; Xuất lên Console message của GUI, User khi tương tác với nó, nhớ xem phần console nhé
    ConsoleWrite(@CRLF & "Msg: " & Hex($iMsg, 4))

    If $iMsg = 0x111 Then ;$WM_Command
        Switch $lParam ; $lParam trả về handle của control vừa tương tác
            Case GUICtrlGetHandle($Btn1)
                MsgBox(0, "", "Button 1 Clicked")
            Case GUICtrlGetHandle($Btn2)
                MsgBox(0, "", "Button 2 Clicked")
            ; Vô tư click...
        EndSwitch
    EndIf

    ; Luôn có dòng này đề tránh lỗi
    Return _WinAPI_CallWindowProc($OldProc, $hWnd, $iMsg, $wParam, $lParam)

    ;Dùng hàm dưới để Define (Unicode) thay cho hàm trên (ANSI), nhớ thêm #include <WinAPISys.au3>
    ;Return _WinAPI_CallWindowProcW($hWnd, $iMsg, $wParam, $lParam)
EndFunc

Source: https://translate.google.com.vn/translate?hl=en&tab=wT&sl=auto&tl=en&u=http%3A%2F%2Fautoitvn.com%2Fthreads%2Fadvanced-callback-phuong-phap-da-luong-trong-autoit.1254%2F

Link to comment
Share on other sites

  • Developers

@gahhon, I find it remarkable that somebody was able to answer your post at all as it is pretty vague.

What about you show us some sort of scriptlet that shows what you want but isn't working yet? ;) 

Jos 

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Moderators

gahhon,

The Interrupting a running function tutorial in the Wiki will explain how to do what you want.

M23

 

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

I haven't try any code yet because I couldn't find any relevant topic from Google.

My design of the GUI is several buttons, then control them by using Switch-Statement as usual.

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $btnJack
            Jack()
        Case $btnVongola
            Vongola()

    EndSwitch
WEnd

 

Link to comment
Share on other sites

  • Developers

That piece of code doesn't show any issue nor can it be ran to demonstrate it. Please post something which is clear and understandable.

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

#include <IE.au3>
#include <excel.au3>
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

#Region ### START Koda GUI section ### Form=
$FormGUI1 = GUICreate("GUI1", 485, 344, -1, -1, BitOR($GUI_SS_DEFAULT_GUI,$WS_MAXIMIZEBOX,$WS_SIZEBOX,$WS_THICKFRAME,$WS_TABSTOP))
GUISetCursor (2)
GUISetBkColor(0x0450CC)
Global $btnJack = GUICtrlCreateButton("Jack", 34, 36, 136, 38)
GUICtrlSetFont(-1, 10, 400, 0, "Imprint MT Shadow")
Global $btnVongola = GUICtrlCreateButton("Vongola", 212, 36, 136, 38)
GUICtrlSetFont(-1, 10, 400, 0, "Imprint MT Shadow")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $btnJack
            Jack()
        Case $btnVongola
            Vongola()
    EndSwitch
WEnd


Func Jack()
    <function code>
EndFunc

Func Vongola()
    <function code>
EndFunc

 

Link to comment
Share on other sites

  • Moderators

gahhon,

Did you bother to read the tutorial to which I linked you in this earlier post of mine? It explains, as its title suggest, exactly how to interrupt a running function in AutoIt - which is the very same question you have asked.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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
 Share

×
×
  • Create New...