Mat Posted June 19, 2009 Share Posted June 19, 2009 Here is a script to show it: GUICreate ("Testing tab switch", 400, 50, -1, -1) Global $hTab = GUICtrlCreateTab (2, 2, 396, 20) GUICtrlCreateTabItem ("1") GUICtrlCreateLabel ("You should only see me in tab 1.", 2, 24, 396, 20) GUICtrlCreateTabItem ("2") GUIRegisterMsg (0x020A, "_TabSwitch"); WM_MOUSEWHEEL GUISetState () While 1 Switch GUIGetMsg () Case -3 Exit EndSwitch WEnd Func _TabSwitch ($hwnd, $msg, $l, $r) Local Const $TCM_SETCURSEL = 0x1300 + 12 Local Const $TCM_GETCURSEL = 0x1300 + 11 Local $nCur = GUICtrlSendMsg ($hTab, $TCM_GETCURSEL, 0, 0) If $l = 0xFF880000 Then; up If $nCur = 0 Then Return SetError (1) GUICtrlSendMsg ($hTab, $TCM_SETCURSEL, $nCur - 1, 0) Else; down If $nCur = 1 Then Return SetError (1) GUICtrlSendMsg ($hTab, $TCM_SETCURSEL, $nCur + 1, 0) EndIf EndFunc; ==> _TabSwitch The problem is that its not switching tabs as it would if done manually by me. MDiesel AutoIt Project Listing Link to comment Share on other sites More sharing options...
ProgAndy Posted June 19, 2009 Share Posted June 19, 2009 Try it with ControlClick and ItemGetRect #Include <GuiTab.au3> GUICreate ("Testing tab switch", 400, 50, -1, -1) Global $hTab = GUICtrlCreateTab (2, 2, 396, 20) GUICtrlCreateTabItem ("1") GUICtrlCreateLabel ("You should only see me in tab 1.", 2, 24, 396, 20) GUICtrlCreateTabItem ("2") GUIRegisterMsg (0x020A, "_TabSwitch"); WM_MOUSEWHEEL GUISetState () While 1 Switch GUIGetMsg () Case -3 Exit EndSwitch WEnd Func _TabSwitch ($hwnd, $msg, $l, $r) Local Const $TCM_SETCURSEL = 0x1300 + 12 Local Const $TCM_GETCURSEL = 0x1300 + 11 Local $nCur = GUICtrlSendMsg ($hTab, $TCM_GETCURSEL, 0, 0) If $l = 0xFF880000 Then; up If $nCur = 0 Then Return SetError (1) ;GUICtrlSendMsg ($hTab, $TCM_SETCURSEL, $nCur - 1, 0) Local $aRect = _GUICtrlTab_GetItemRect($hTab, $nCur -1) ControlClick(GUICtrlGetHandle($hTab), "", "", "primary", 1, $aRect[0], $aRect[1]) Else; down If $nCur = 1 Then Return SetError (1) ;GUICtrlSendMsg ($hTab, $TCM_SETCURSEL, $nCur + 1, 0) Local $aRect = _GUICtrlTab_GetItemRect($hTab, $nCur +1) ControlClick(GUICtrlGetHandle($hTab), "", "", "primary", 1, $aRect[0], $aRect[1]) EndIf EndFunc; ==> _TabSwitch *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Link to comment Share on other sites More sharing options...
Mat Posted June 19, 2009 Author Share Posted June 19, 2009 Try it with ControlClick and ItemGetRect Thats cheating!!No, thanks. I was thinking about that, but thought it would be better to send the msg's.Thats up and working, but unfortunately I don't like to use workarounds just becouse I failed (sore loser:)). Is it something to do with autoit intercepting the notifications? if so... how do I trigger those manually?Thanks ProgAndy!!MDiesel AutoIt Project Listing Link to comment Share on other sites More sharing options...
PsaltyDS Posted June 19, 2009 Share Posted June 19, 2009 (edited) Thats cheating!! No, thanks. I was thinking about that, but thought it would be better to send the msg's. Thats up and working, but unfortunately I don't like to use workarounds just becouse I failed (sore loser:)). Is it something to do with autoit intercepting the notifications? if so... how do I trigger those manually? Thanks ProgAndy!! MDiesel There is more than one message involved. Changing it that way doesn't send $TCN_SELCHANGING or $TCN_SELCHANGE, to trigger redrawing the GUI. P.S. This ALMOST works: expandcollapse popup#include <GuiTab.au3> Global $hGUI = GUICreate("Testing tab switch", 400, 50, -1, -1) Global $ctrlTab = GUICtrlCreateTab(2, 2, 396, 20) Global $hTab = ControlGetHandle($hGUI, "", $ctrlTab) For $n = 0 To 4 GUICtrlCreateTabItem("Tab" & $n) GUICtrlCreateLabel("This is tab " & $n, 2, 24, 396, 20) Next GUICtrlCreateTabItem("") GUIRegisterMsg(0x020A, "_TabSwitch"); WM_MOUSEWHEEL GUISetState() For $n = 0 To 4 ; Demonstrate that all tabs CAN be selected Sleep(1000) _GUICtrlTab_ClickTab($hTab, $n) ConsoleWrite("Debug: $n = " & $n & @LF) Next While 1 Switch GUIGetMsg() Case - 3 Exit EndSwitch WEnd Func _TabSwitch($hwnd, $msg, $l, $r) Local Const $TCM_SETCURSEL = 0x1300 + 12 Local Const $TCM_GETCURSEL = 0x1300 + 11 Local $nCur = GUICtrlSendMsg($ctrlTab, $TCM_GETCURSEL, 0, 0) ConsoleWrite("Debug: $nCur = " & $nCur & @LF) If $l = 0xFF880000 Then; up If $nCur = 0 Then Return SetError(1) _GUICtrlTab_ClickTab($hTab, $nCur - 1) Else; down If $nCur = _GuiCtrlTab_GetItemCount($hTab) - 1 Then Return SetError(1) _GUICtrlTab_ClickTab($hTab, $nCur + 1) EndIf EndFunc;==>_TabSwitch It will move down just fine. Mouse wheel up hangs on tab 1, and I don't know why. If you manually select Tab 2 with a mouse click, it will go up from there with the mouse wheel, and it will go up from 0 to 1, but no further by mouse wheel. ??? ReEdit: Doh! It was just the weird error return. Fixed it. Edited June 19, 2009 by PsaltyDS Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Link to comment Share on other sites More sharing options...
Mat Posted June 19, 2009 Author Share Posted June 19, 2009 There is more than one message involved. Changing it that way doesn't send $TCN_SELCHANGING or $TCN_SELCHANGE, to trigger redrawing the GUI.... Is it something to do with autoit intercepting the notifications?... Is there a way I can manually trigger those notifications? Or is Progandys the best?MDiesel AutoIt Project Listing Link to comment Share on other sites More sharing options...
PsaltyDS Posted June 19, 2009 Share Posted June 19, 2009 Done this way, it can scroll round-robin, and now it works: expandcollapse popup#include <GuiTab.au3> Global $hGUI = GUICreate("Testing tab switch", 400, 50, -1, -1) Global $ctrlTab = GUICtrlCreateTab(2, 2, 396, 20) Global $hTab = ControlGetHandle($hGUI, "", $ctrlTab) For $n = 0 To 4 GUICtrlCreateTabItem("Tab" & $n) GUICtrlCreateLabel("This is tab " & $n, 2, 24, 396, 20) Next GUICtrlCreateTabItem("") GUIRegisterMsg(0x020A, "_TabSwitch"); WM_MOUSEWHEEL GUISetState() For $n = 0 To 4 ; Demonstrate that all tabs CAN be selected Sleep(1000) _GUICtrlTab_ClickTab($hTab, $n) ConsoleWrite("Debug: $n = " & $n & @LF) Next While 1 Switch GUIGetMsg() Case - 3 Exit EndSwitch WEnd Func _TabSwitch($hwnd, $msg, $l, $r) Local Const $TCM_SETCURSEL = 0x1300 + 12 Local Const $TCM_GETCURSEL = 0x1300 + 11 Local $nCur = GUICtrlSendMsg($ctrlTab, $TCM_GETCURSEL, 0, 0) ConsoleWrite("Debug: $nCur = " & $nCur & @LF) If $l = 0xFF880000 Then ; Mouse wheel up If $nCur = 0 Then _GUICtrlTab_ClickTab($hTab, _GUICtrlTab_GetItemCount($hTab) - 1) Else _GUICtrlTab_ClickTab($hTab, $nCur - 1) EndIf Else ; Mouse wheel down If $nCur = _GUICtrlTab_GetItemCount($hTab) - 1 Then _GUICtrlTab_ClickTab($hTab, 0) Else _GUICtrlTab_ClickTab($hTab, $nCur + 1) EndIf EndIf EndFunc ;==>_TabSwitch Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Link to comment Share on other sites More sharing options...
Mat Posted June 19, 2009 Author Share Posted June 19, 2009 Thanks a lot, and you'll never guess what... It's very similar to ProgAndys!! MDiesel AutoIt Project Listing Link to comment Share on other sites More sharing options...
PsaltyDS Posted June 20, 2009 Share Posted June 20, 2009 Thanks a lot, and you'll never guess what... It's very similar to ProgAndys!!MDieselThat's OK, he's probably a better programmer than me, but no where near as good looking! Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Link to comment Share on other sites More sharing options...
ProgAndy Posted June 20, 2009 Share Posted June 20, 2009 (edited) Is there a way I can manually trigger those notifications? Or is Progandys the best? MDieselNow i wrote the _GUICtrlTab__ActiavteTab wich sends all required Messages expandcollapse popup#include <GuiTab.au3> Global $hGUI = GUICreate("Testing tab switch", 400, 50, -1, -1) Global $ctrlTab = GUICtrlCreateTab(2, 2, 396, 20) Global $hTab = ControlGetHandle($hGUI, "", $ctrlTab) For $n = 0 To 4 GUICtrlCreateTabItem("Tab" & $n) GUICtrlCreateLabel("This is tab " & $n, 2, 24, 396, 20) Next GUICtrlCreateTabItem("") GUIRegisterMsg(0x020A, "_TabSwitch"); WM_MOUSEWHEEL GUISetState() While 1 Switch GUIGetMsg() Case - 3 Exit EndSwitch WEnd Func _TabSwitch($hwnd, $msg, $l, $r) Local $nCur = GUICtrlSendMsg($ctrlTab, $TCM_GETCURSEL, 0, 0) ConsoleWrite("Debug: $nCur = " & $nCur & @LF) If $l = 0xFF880000 Then ; Mouse wheel up If $nCur = 0 Then _GUICtrlTab_ActivateTab($hTab, _GUICtrlTab_GetItemCount($hTab) - 1) Else _GUICtrlTab_ActivateTab($hTab, $nCur - 1) EndIf Else ; Mouse wheel down If $nCur = _GUICtrlTab_GetItemCount($hTab) - 1 Then _GUICtrlTab_ActivateTab($hTab, 0) Else _GUICtrlTab_ActivateTab($hTab, $nCur + 1) EndIf EndIf EndFunc ;==>_TabSwitch ; #FUNCTION# ==================================================================================================================== ; Name...........: _GUICtrlTab_ActivateTab ; Description ...: Activates a tab by its index and sends all required messages ; Syntax.........: _GUICtrlTab_ActivateTab($hWnd, $iIndex) ; Parameters ....: $hWnd - Handle to control ; $iIndex - Specifies the zero based index of the item ; Return values .: Success - The index of the previously selected tab ; Failure - -1 ; Author ........: Prog@ndy ; Modified.......: ; Remarks .......: ; Related .......: ; Link ..........; ; Example .......; ; =============================================================================================================================== Func _GUICtrlTab_ActivateTab($hWnd, $iIndex) Local $nIndX, $hParent, $NMHDR, $iRet ; first, get Handle and CtrlID of TabControl If $hWnd = -1 Then $hWnd = GUICtrlGetHandle(-1) If IsHWnd($hWnd) Then $nIndX = DllCall("user32.dll", "int", "GetDlgCtrlID", "hwnd", $hWnd) $nIndX = $nIndX[0] Else $nIndX = $hWnd $hWnd = GUICtrlGetHandle($hWnd) EndIf ; then get Parent Local $hParent = DllCall("user32.dll", "hwnd", "GetParent", "hwnd", $hWnd) If @error Then Return SetError(1,0,-1) $hParent = $hParent[0] ; create Struct for the Messages $NMHDR = DllStructCreate("HWND hwndFrom; UINT_PTR idFrom; UINT code;") DllStructSetData($NMHDR, 1, $hWnd) DllStructSetData($NMHDR, 2, $nIndX) DllStructSetData($NMHDR, 3, $TCN_SELCHANGING) ; send first message _SendMessage($hParent, 0x4E, $nIndX, DllStructGetPtr($NMHDR)) ; select TabItem $iRet = _GUICtrlTab_SetCurSel($hWnd, $iIndex) ; send second message DllStructSetData($NMHDR, 3, $TCN_SELCHANGE) _SendMessage($hParent, 0x4E, $nIndX, DllStructGetPtr($NMHDR)) Return $iRet EndFunc //Edit: Possibly it's worth to be added to GUITab.au3 Edited June 20, 2009 by ProgAndy *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Link to comment Share on other sites More sharing options...
Mat Posted June 20, 2009 Author Share Posted June 20, 2009 I knew it was possible!! Thanks a lot prograndy, you just made my day. Definitely gets my vote! Only one problem left... Edit controls swallow the windows message, you can no longer use the mouse scroll after clicking into an edit. even one with no styles... and even after you click off. do I need to trigger another msg when the edit control is clicked in, to revert back to normal? CODE#include <GuiTab.au3> Global $hGUI = GUICreate("Testing tab switch", 400, 50, -1, -1) Global $ctrlTab = GUICtrlCreateTab(2, 2, 396, 20) Global $hTab = ControlGetHandle($hGUI, "", $ctrlTab) For $n = 0 To 4 GUICtrlCreateTabItem("Tab" & $n) GUICtrlCreateLabel ("This is tab " & $n, 2, 24, 396, 20) Next GUICtrlCreateTabItem ("Edit tab") GUICtrlCreateEdit ("", 2, 24, 396, 20, 0, 0) ; no styles! GUICtrlCreateTabItem("") GUIRegisterMsg(0x020A, "_TabSwitch"); WM_MOUSEWHEEL GUISetState() While 1 Switch GUIGetMsg() Case - 3 Exit EndSwitch WEnd Func _TabSwitch($hwnd, $msg, $l, $r) Local $nCur = GUICtrlSendMsg($ctrlTab, $TCM_GETCURSEL, 0, 0) ConsoleWrite("Debug: $nCur = " & $nCur & @LF) If $l = 0xFF880000 Then ; Mouse wheel up If $nCur = 0 Then _GUICtrlTab_ActivateTab($hTab, _GUICtrlTab_GetItemCount($hTab) - 1) Else _GUICtrlTab_ActivateTab($hTab, $nCur - 1) EndIf Else ; Mouse wheel down If $nCur = _GUICtrlTab_GetItemCount($hTab) - 1 Then _GUICtrlTab_ActivateTab($hTab, 0) Else _GUICtrlTab_ActivateTab($hTab, $nCur + 1) EndIf EndIf EndFunc ;==>_TabSwitch ; #FUNCTION# ==================================================================================================== ; Name...........: _GUICtrlTab_ActivateTab ; Description ...: Activates a tab by its index and sends all required messages ; Syntax.........: _GUICtrlTab_ActivateTab($hWnd, $iIndex) ; Parameters ....: $hWnd - Handle to control ; $iIndex - Specifies the zero based index of the item ; Return values .: Success - The index of the previously selected tab ; Failure - -1 ; Author ........: Prog@ndy ; Modified.......: ; Remarks .......: ; Related .......: ; Link ..........; ; Example .......; ; ==================================================================================================== Func _GUICtrlTab_ActivateTab($hWnd, $iIndex) Local $nIndX, $hParent, $NMHDR, $iRet ; first, get Handle and CtrlID of TabControl If $hWnd = -1 Then $hWnd = GUICtrlGetHandle(-1) If IsHWnd($hWnd) Then $nIndX = DllCall("user32.dll", "int", "GetDlgCtrlID", "hwnd", $hWnd) $nIndX = $nIndX[0] Else $nIndX = $hWnd $hWnd = GUICtrlGetHandle($hWnd) EndIf ; then get Parent Local $hParent = DllCall("user32.dll", "hwnd", "GetParent", "hwnd", $hWnd) If @error Then Return SetError(1,0,-1) $hParent = $hParent[0] ; create Struct for the Messages $NMHDR = DllStructCreate("HWND hwndFrom; UINT_PTR idFrom; UINT code;") DllStructSetData($NMHDR, 1, $hWnd) DllStructSetData($NMHDR, 2, $nIndX) DllStructSetData($NMHDR, 3, $TCN_SELCHANGING) ; send first message _SendMessage($hParent, 0x4E, $nIndX, DllStructGetPtr($NMHDR)) ; select TabItem $iRet = _GUICtrlTab_SetCurSel($hWnd, $iIndex) ; send second message DllStructSetData($NMHDR, 3, $TCN_SELCHANGE) _SendMessage($hParent, 0x4E, $nIndX, DllStructGetPtr($NMHDR)) Return $iRet EndFunc MDiesel AutoIt Project Listing Link to comment Share on other sites More sharing options...
PsaltyDS Posted June 20, 2009 Share Posted June 20, 2009 Now i wrote the _GUICtrlTab__ActiavteTab wich sends all required Messages CODE#include <GuiTab.au3> Global $hGUI = GUICreate("Testing tab switch", 400, 50, -1, -1) Global $ctrlTab = GUICtrlCreateTab(2, 2, 396, 20) Global $hTab = ControlGetHandle($hGUI, "", $ctrlTab) For $n = 0 To 4 GUICtrlCreateTabItem("Tab" & $n) GUICtrlCreateLabel("This is tab " & $n, 2, 24, 396, 20) Next GUICtrlCreateTabItem("") GUIRegisterMsg(0x020A, "_TabSwitch"); WM_MOUSEWHEEL GUISetState() While 1 Switch GUIGetMsg() Case - 3 Exit EndSwitch WEnd Func _TabSwitch($hwnd, $msg, $l, $r) Local $nCur = GUICtrlSendMsg($ctrlTab, $TCM_GETCURSEL, 0, 0) ConsoleWrite("Debug: $nCur = " & $nCur & @LF) If $l = 0xFF880000 Then ; Mouse wheel up If $nCur = 0 Then _GUICtrlTab_ActivateTab($hTab, _GUICtrlTab_GetItemCount($hTab) - 1) Else _GUICtrlTab_ActivateTab($hTab, $nCur - 1) EndIf Else ; Mouse wheel down If $nCur = _GUICtrlTab_GetItemCount($hTab) - 1 Then _GUICtrlTab_ActivateTab($hTab, 0) Else _GUICtrlTab_ActivateTab($hTab, $nCur + 1) EndIf EndIf EndFunc ;==>_TabSwitch ; #FUNCTION# ====================================================== ; Name...........: _GUICtrlTab_ActivateTab ; Description ...: Activates a tab by its index and sends all required messages ; Syntax.........: _GUICtrlTab_ActivateTab($hWnd, $iIndex) ; Parameters ....: $hWnd - Handle to control ; $iIndex - Specifies the zero based index of the item ; Return values .: Success - The index of the previously selected tab ; Failure - -1 ; Author ........: Prog@ndy ; Modified.......: ; Remarks .......: ; Related .......: ; Link ..........; ; Example .......; ; ================================================================= Func _GUICtrlTab_ActivateTab($hWnd, $iIndex) Local $nIndX, $hParent, $NMHDR, $iRet ; first, get Handle and CtrlID of TabControl If $hWnd = -1 Then $hWnd = GUICtrlGetHandle(-1) If IsHWnd($hWnd) Then $nIndX = DllCall("user32.dll", "int", "GetDlgCtrlID", "hwnd", $hWnd) $nIndX = $nIndX[0] Else $nIndX = $hWnd $hWnd = GUICtrlGetHandle($hWnd) EndIf ; then get Parent Local $hParent = DllCall("user32.dll", "hwnd", "GetParent", "hwnd", $hWnd) If @error Then Return SetError(1,0,-1) $hParent = $hParent[0] ; create Struct for the Messages $NMHDR = DllStructCreate("HWND hwndFrom; UINT_PTR idFrom; UINT code;") DllStructSetData($NMHDR, 1, $hWnd) DllStructSetData($NMHDR, 2, $nIndX) DllStructSetData($NMHDR, 3, $TCN_SELCHANGING) ; send first message _SendMessage($hParent, 0x4E, $nIndX, DllStructGetPtr($NMHDR)) ; select TabItem $iRet = _GUICtrlTab_SetCurSel($hWnd, $iIndex) ; send second message DllStructSetData($NMHDR, 3, $TCN_SELCHANGE) _SendMessage($hParent, 0x4E, $nIndX, DllStructGetPtr($NMHDR)) Return $iRet EndFunc //Edit: Possibly it's worth to be added to GUITab.au3 Very cool to see all the messages sent, but they are all sent automatically by the Windows API for the Tab control when you click on a tab with _GuiCtrlTab_ClickTab(). What is the advantage to this method, besides the geeky-cool demo of how the messages work? Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Link to comment Share on other sites More sharing options...
PsaltyDS Posted June 20, 2009 Share Posted June 20, 2009 I knew it was possible!! Thanks a lot prograndy, you just made my day. Definitely gets my vote! Only one problem left... Edit controls swallow the windows message, you can no longer use the mouse scroll after clicking into an edit. even one with no styles... and even after you click off. do I need to trigger another msg when the edit control is clicked in, to revert back to normal? CODE#include <GuiTab.au3> Global $hGUI = GUICreate("Testing tab switch", 400, 50, -1, -1) Global $ctrlTab = GUICtrlCreateTab(2, 2, 396, 20) Global $hTab = ControlGetHandle($hGUI, "", $ctrlTab) For $n = 0 To 4 GUICtrlCreateTabItem("Tab" & $n) GUICtrlCreateLabel ("This is tab " & $n, 2, 24, 396, 20) Next GUICtrlCreateTabItem ("Edit tab") GUICtrlCreateEdit ("", 2, 24, 396, 20, 0, 0) ; no styles! GUICtrlCreateTabItem("") GUIRegisterMsg(0x020A, "_TabSwitch"); WM_MOUSEWHEEL GUISetState() While 1 Switch GUIGetMsg() Case - 3 Exit EndSwitch WEnd Func _TabSwitch($hwnd, $msg, $l, $r) Local $nCur = GUICtrlSendMsg($ctrlTab, $TCM_GETCURSEL, 0, 0) ConsoleWrite("Debug: $nCur = " & $nCur & @LF) If $l = 0xFF880000 Then ; Mouse wheel up If $nCur = 0 Then _GUICtrlTab_ActivateTab($hTab, _GUICtrlTab_GetItemCount($hTab) - 1) Else _GUICtrlTab_ActivateTab($hTab, $nCur - 1) EndIf Else ; Mouse wheel down If $nCur = _GUICtrlTab_GetItemCount($hTab) - 1 Then _GUICtrlTab_ActivateTab($hTab, 0) Else _GUICtrlTab_ActivateTab($hTab, $nCur + 1) EndIf EndIf EndFunc ;==>_TabSwitch ; #FUNCTION# ==================================================================================================== ; Name...........: _GUICtrlTab_ActivateTab ; Description ...: Activates a tab by its index and sends all required messages ; Syntax.........: _GUICtrlTab_ActivateTab($hWnd, $iIndex) ; Parameters ....: $hWnd - Handle to control ; $iIndex - Specifies the zero based index of the item ; Return values .: Success - The index of the previously selected tab ; Failure - -1 ; Author ........: Prog@ndy ; Modified.......: ; Remarks .......: ; Related .......: ; Link ..........; ; Example .......; ; ==================================================================================================== Func _GUICtrlTab_ActivateTab($hWnd, $iIndex) Local $nIndX, $hParent, $NMHDR, $iRet ; first, get Handle and CtrlID of TabControl If $hWnd = -1 Then $hWnd = GUICtrlGetHandle(-1) If IsHWnd($hWnd) Then $nIndX = DllCall("user32.dll", "int", "GetDlgCtrlID", "hwnd", $hWnd) $nIndX = $nIndX[0] Else $nIndX = $hWnd $hWnd = GUICtrlGetHandle($hWnd) EndIf ; then get Parent Local $hParent = DllCall("user32.dll", "hwnd", "GetParent", "hwnd", $hWnd) If @error Then Return SetError(1,0,-1) $hParent = $hParent[0] ; create Struct for the Messages $NMHDR = DllStructCreate("HWND hwndFrom; UINT_PTR idFrom; UINT code;") DllStructSetData($NMHDR, 1, $hWnd) DllStructSetData($NMHDR, 2, $nIndX) DllStructSetData($NMHDR, 3, $TCN_SELCHANGING) ; send first message _SendMessage($hParent, 0x4E, $nIndX, DllStructGetPtr($NMHDR)) ; select TabItem $iRet = _GUICtrlTab_SetCurSel($hWnd, $iIndex) ; send second message DllStructSetData($NMHDR, 3, $TCN_SELCHANGE) _SendMessage($hParent, 0x4E, $nIndX, DllStructGetPtr($NMHDR)) Return $iRet EndFunc MDiesel I think when the Edit control gets focus, it registers its own handler for WM_MOUSEWHEEL. So you have to re-register yours. I don't know if you can do that while the edit still has focus. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Link to comment Share on other sites More sharing options...
Mat Posted June 20, 2009 Author Share Posted June 20, 2009 I've been looking through the messages to see if there are any that trigger the edit gaining all losing focus, all I ended up with is putting ControlGetFocus in a loop. I'm not sure how to solve it though... Unless there is a way to find out what function is currently registered, which I can't find. dodgy solution: AdlibRegister ("_ResetMsg") Func _ResetMsg () GUIRegisterMsg (code, func) EndFunc MDiesel AutoIt Project Listing Link to comment Share on other sites More sharing options...
PsaltyDS Posted June 21, 2009 Share Posted June 21, 2009 (edited) I've been looking through the messages to see if there are any that trigger the edit gaining all losing focus, all I ended up with is putting ControlGetFocus in a loop. I'm not sure how to solve it though... Unless there is a way to find out what function is currently registered, which I can't find. dodgy solution: AdlibRegister ("_ResetMsg") Func _ResetMsg () GUIRegisterMsg (code, func) EndFunc MDiesel Well, I posted the statement that I didn't know if you could do that after failing in my own attempt. I just put a check with ControlGetFocus() in the GuiGetMsg() While\WEnd loop that would re-register the WM_MOUSEWHEEL message whenever focus changed to the Tab or Edit controls. It did not appear to work while the Edit had focus. That doesn't prove it can't be done, but it's at least not that simple. Edit: typo Edited June 21, 2009 by PsaltyDS Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Link to comment Share on other sites More sharing options...
Mat Posted June 21, 2009 Author Share Posted June 21, 2009 (edited) KK, maybe its possible then it'll only work when it loses focus.I think thats as good as its going to get. Unless I can draw my own textbox... I saw someone linked to one, but the link was broken, and searching failed to produce any results either.Thanks for your help.MDieselEdit: Guys. are we missing something. Control command: "CurrentTab", "" Returns the current Tab shown of a SysTabControl32 "TabRight", "" Moves to the next tab to the right of a SysTabControl32 "TabLeft", "" Moves to the next tab to the left of a SysTabControl32Not tested... but i'm goig to now. Edited June 21, 2009 by mdiesel AutoIt Project Listing Link to comment Share on other sites More sharing options...
ProgAndy Posted June 21, 2009 Share Posted June 21, 2009 (edited) Edit: Guys. are we missing something. Control command: Not tested... but i'm goig to now.Oops, but with ControlCommand you can't select a tab by its Index Very cool to see all the messages sent, but they are all sent automatically by the Windows API for the Tab control when you click on a tab with _GuiCtrlTab_ClickTab(). What is the advantage to this method, besides the geeky-cool demo of how the messages work? ClickTab is not a WinAPi-function, but it is user-defined. Did you look at the Code for ClickTab? it moves the mose and clicks. So the TabControl has to be visible and it will gain focus._GUICtrlTab_ActivateTab should work with hidden or minimized windows, too. Edited June 21, 2009 by ProgAndy *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Link to comment Share on other sites More sharing options...
Mat Posted June 21, 2009 Author Share Posted June 21, 2009 Oops, but with ControlCommand you can't select a tab by its Index Yer, I know, but it would have saved me a lot of trouble earlier. But I suppose its worthit when you end up with better code...As your the expert here, how can I solve the problem with the edit control?MDiesel AutoIt Project Listing Link to comment Share on other sites More sharing options...
ProgAndy Posted June 21, 2009 Share Posted June 21, 2009 (edited) I don't know. Possibly subclass it, and then call DefWindowProc instead of the Original windowproc for this message.At least MSDN mentions, DefWindowProc propagates the message to the parent.http://msdn.microsoft.com/en-us/library/ms645617.aspx Edited June 21, 2009 by ProgAndy *GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes Link to comment Share on other sites More sharing options...
PsaltyDS Posted June 22, 2009 Share Posted June 22, 2009 (edited) ClickTab is not a WinAPi-function, but it is user-defined. Did you look at the Code for ClickTab? it moves the mose and clicks. So the TabControl has to be visible and it will gain focus. _GUICtrlTab_ActivateTab should work with hidden or minimized windows, too. Good point. There is a MouseClick() at the heart of _GuiCtrlTab_ClickTab(). I'm surprised. I assumed (stupidly, without looking) that it used ControlClick() or the appropriate DLL vice MouseClick() because the default was not to move the mouse. Since ControlClick() has supported X/Y coordinates within the control for the last couple of Beta/Prod versions that change should be made. Then the existing UDF code would work without focus or worrying about moving the mouse. Edit: Here is a demo of what I'm suggesting. Each time you hit ESC it jumps two tabs to the right (round-robin), even if the window is minimized: expandcollapse popup#include <GuiTab.au3> HotKeySet("{ESC}", "_Demo"); Hit ESC to see tab + 2 change Global $hGUI = GUICreate("Testing tab switch", 400, 100, -1, -1) Global $ctrlTab = GUICtrlCreateTab(10, 10, 380, 50) Global $hTab = ControlGetHandle($hGUI, "", $ctrlTab) For $n = 0 To 4 GUICtrlCreateTabItem("Tab" & $n) GUICtrlCreateLabel("This is tab " & $n, 12, 34, 300, 20) Next GUICtrlCreateTabItem("") GUISetState() While 1 Switch GUIGetMsg() Case - 3 Exit EndSwitch WEnd Func _Demo() ; Move the tab twice to the right (round-robin) ; Can be done with window not active Local $nCur = GUICtrlSendMsg($ctrlTab, $TCM_GETCURSEL, 0, 0) Local $nCount = _GUICtrlTab_GetItemCount($hTab) Local $nNew = $nCur + 2 If $nNew > ($nCount - 1) Then $nNew -= $nCount ConsoleWrite("Debug: $nCur = " & $nCur & ", $nNew = " & $nNew & @LF) __GUICtrlTab_ClickTab($hTab, $nNew); Modified version of _GuiCtrlTab_ClickTab() EndFunc ;==>_Demo ; #FUNCTION# ===================================================== ; Name...........: _GUICtrlTab_ClickTab ; Description ...: Clicks a tab ; Syntax.........: _GUICtrlTab_ClickTab($hWnd, $iIndex[, $sButton = "left"[, $fMove = False[, ; $iClicks = 1[, $iSpeed = 1]]]]) ; Parameters ....: $hWnd - Handle to control ; $iIndex - Specifies the zero based index of the item ; $fButton - Button to click with ; $fMove - If True, the mouse will be moved. ; - If False, the mouse does not move. ; $iClicks - Number of clicks ; $iSpeed - Mouse movement speed ; Return values .: ; Author ........: Paul Campbell (PaulIA) ; Modified.......: Gary Frost (gafrost) ; : PsaltyDS - Modified to use ControlClick() when $fMove = False so window ; does not have to be active ; Remarks .......: ; Related .......: ; Link ..........; ; Example .......; Yes ; ================================================================ Func __GUICtrlTab_ClickTab($hwnd, $iIndex, $sButton = "left", $fMove = False, $iClicks = 1, $iSpeed = 1) Local $iX, $iY, $tPoint, $tRect, $iMode, $aPos, $hWinParent, $avTabPos If $Debug_TAB Then _GUICtrlTab_ValidateClassName($hwnd) If Not IsHWnd($hwnd) Then $hwnd = GUICtrlGetHandle($hwnd) If Not $fMove Then ; Don't move mouse, use ControlClick() $hWinParent = _WinAPI_GetParent($hwnd) $avTabPos = _GUICtrlTab_GetItemRect($hwnd, $iIndex) $iX = $avTabPos[0] + (($avTabPos[2] - $avTabPos[0]) / 2) $iY = $avTabPos[1] + (($avTabPos[3] - $avTabPos[1]) / 2) ControlClick($hWinParent, "", $hwnd, $sButton, $iClicks, $iX, $iY) Else ; Original code to move mouse and click (requires active window) $tRect = _GUICtrlTab_GetItemRectEx($hwnd, $iIndex) $tPoint = _WinAPI_PointFromRect($tRect, True) $tPoint = _WinAPI_ClientToScreen($hwnd, $tPoint) _WinAPI_GetXYFromPoint($tPoint, $iX, $iY) $iMode = Opt("MouseCoordMode", 1) MouseClick($sButton, $iX, $iY, $iClicks, $iSpeed) Opt("MouseCoordMode", $iMode) EndIf EndFunc ;==>__GUICtrlTab_ClickTab If $fMove = False (the default) it will use ControlClick() and will change tabs correctly even if the window is inactive or minimized. The method is unchanged where $fMove = True, and that might bear looking into. Edit: Tried to remove annoying line wrap. Edited June 22, 2009 by PsaltyDS Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Link to comment Share on other sites More sharing options...
Mat Posted June 22, 2009 Author Share Posted June 22, 2009 surely its more efficient to use ctrl click anyhow, as then it will work whether the window is open or not... or use progandys script.I can't get anywhere with the edit - I can't even seem to re-register the message after it loses focus.MDiesel AutoIt Project Listing Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now