chun914 Posted March 12, 2008 Posted March 12, 2008 1, my child win is always display on the top of the main windows, even if the main windows is activated. The child windows still on the top of the main windows. Any options i can make the main windows at top when it's activated ? 2. anyway to add the function when mouse pointer is over a listview item. And the width is not enough. A little boxes is displayed.
rasim Posted March 12, 2008 Posted March 12, 2008 chun914 said: 1, my child win is always display on the top of the main windows, even if the main windows is activated. The child windows still on the top of the main windows. Any options i can make the main windows at top when it's activated ? 2. anyway to add the function when mouse pointer is over a listview item. And the width is not enough. A little boxes is displayed. 1.Show the example! 2. Use $LVS_EX_INFOTIP extended style. Example: #include <GuiConstants.au3> $hGUI = GUICreate("Test GUI", 300, 200) $hListView = GUICtrlCreateListView("Items|SubItems", 10, 10, 280, 160, -1, $LVS_EX_INFOTIP) GUICtrlCreateListViewItem("Long lon long item|Long lon long item Long lon long item Long lon long item", $hListView) GUISetState() Do Until GUIGetMsg() = $GUI_EVENT_CLOSE
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