Mungo Posted August 30, 2014 Share Posted August 30, 2014 Maybe someone can help ... I use tabs on my parent (main) GUI and on a child (pop-up) GUI. I also use GUICtrlSetTip descriptions for the tab items on both GUIs. The tips are displayed correctly for the parent GUI tab items but not for the child GUI tab items. The mouse over on the child GUI tab items produces the same tip messages as for the parent GUI tab items for as many (number of) tabs and tips also found in the main GUI (the first 2). This applies regardless whether tip messages are defined for tab items in the child GUI or not. If the number of tab items with tips in the child GUI (3 tab items) is larger than in the main GUI (2 tab items), then defined tip messages are displayed correctly for those tab items (numbers) larger (in this case the 3rd tab item). Thanks A two GUI example below expandcollapse popup#include <GUIConstantsEx.au3> Opt('MustDeclareVars', 1) Global $main_gui, $pop_gui main_gui() Func main_gui() $main_gui = GUICreate ("Gui Main - TABs and tips", 400, 400, -1, -1, -1, -1, 0) GUICtrlCreateTab(10, 10, 200, 100) GUICtrlCreateTabItem("Main Tab 01") GUICtrlSetTip(-1, "TAB Main 1") GUICtrlCreateLabel("Mouse over tab name to see tips ...", 20, 50, 200, 20) GUICtrlCreateTabItem("Main Tab 02") GUICtrlSetTip(-1, "TAB Main 2") GUICtrlCreateLabel("Mouse over tab name to see tips ...", 20, 50, 200, 20) GUICtrlCreateTabItem("") Local $exit = GUICtrlCreateButton("Exit", 110, 360, 80, 20) Local $pop = GUICtrlCreateButton("Pop-up", 210, 360, 80, 20) GUISetState(@SW_SHOW) While 1 Local $msg_pop = GUIGetMsg() Select Case $msg_pop = $GUI_EVENT_CLOSE ExitLoop Case $msg_pop = $exit ExitLoop Case $msg_pop = $pop pop_gui() EndSelect WEnd GUIDelete() EndFunc Func pop_gui() $pop_gui = GUICreate ("Gui Pop-up - TABs and tips", 300, 300,-1, -1, -1, -1, $main_gui) GUICtrlCreateTab(10, 10, 280, 100) GUICtrlCreateTabItem("Pop-up Tab 01") GUICtrlCreateLabel("Mouse over tab name to see tips ...", 20, 50, 200, 20) GUICtrlCreateTabItem("Pop-up Tab 02") GUICtrlSetTip(-1, "TAB Pop-up 2") GUICtrlCreateLabel("Mouse over tab name to see tips ...", 20, 50, 200, 20) GUICtrlCreateTabItem("Pop-up Tab 03") GUICtrlSetTip(-1, "TAB Pop-up 3") GUICtrlCreateLabel("Mouse over tab name to see tips ...", 20, 50, 200, 20) GUICtrlCreateTabItem("") Local $exit = GUICtrlCreateButton("Exit", 110, 260, 80, 20) GUISetState(@SW_SHOW) While 1 Local $msg_pop = GUIGetMsg() Select Case $msg_pop = $GUI_EVENT_CLOSE ExitLoop Case $msg_pop = $exit ExitLoop EndSelect WEnd GUIDelete() EndFunc Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted August 30, 2014 Moderators Share Posted August 30, 2014 Mungo,I can certainly reproduce the problem, so it is not just you. AutoIt deals with Tabs, along with some other more complex controls such as TreeViews, in a strange manner. The TabItems, although given a ControlID, are not really separate elements - if you try to access their handle you will find that there is not one associated with them. AutoIt manages them through its internal systems, but you cannot access them directly. So I can well imagine that AutoIt gets confused when tooltips are set for the TabItems. >I suggest you open a Trac ticket and see if Jon can do something internally. In the meantime I will have a look at whether you can mimic the behaviour by using _GUICtrlTab_HitTest. M23 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 columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area 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