Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (400 - 402 of 3927)

Ticket Resolution Summary Owner Reporter
#1528 No Bug GUICtrlCreateListView Example not work thesnoW
Description
			Case $msg = $listview
				MsgBox(0, "listview", "clicked=" & GUICtrlGetState($listview), 2)

OS:WIN7 X64

#1532 No Bug ComboBox custom height not retained after window minimize Spiff59
Description

As shown in the example script below, if a user adjusts the item height of a ComboBox, once the window has been minimized and restored, the ComboBox will revert to it's default item height.

#include <GuiComboBox.au3>
#include <GuiConstants.au3>
Dim $hGUI

$GUI_Main = GuiCreate("", 245, 180, 200, 200)
GUISetFont(7.5, 400, 0)
$Combo1 = GUICtrlCreateCombo("", 20, 36, 200, 16, $CBS_DROPDOWNLIST)
GUICtrlSetData(-1, "1 WEEK|2 WEEKS|4 WEEKS|8 WEEKS|3 MONTHS", "1 WEEK")
_GUICtrlComboBox_SetItemHeight(-1, 12)

$button1 = GUICtrlCreateButton("click to minimize and restore", 20, 80, 200, 18)
$button2 = GUICtrlCreateButton("click to reset combo box height", 20, 120, 200, 18)
GUISetState()
Send("{TAB}")

While 1
    $msg = GUIGetMsg()
    If $msg = $button1 Then
        GUISetState(@SW_MINIMIZE)
        Sleep(100)
        GUISetState(@SW_RESTORE)
		Send("{TAB}{TAB}")
    EndIf
    If $msg = $button2 Then
        _GUICtrlComboBox_SetItemHeight($Combo1, 12)
    EndIf
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend
Exit
#1534 No Bug Multiple GUI windows management issue darkprince.1979@…
Description

The GUI system is perfectly fine when there is only one window. When there is more than one window and you have to switch between windows visually using @SW_SHOW @SW_HIDE its a mess.GUISwitch does'nt help.

The windows stop responding or the display is totally unpredictable.

When I checked forum it says even the WinActivate is no use but there is no solution in the forum:(

showtopic=15839

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.