Custom Query (3920 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (379 - 381 of 3920)

Ticket Resolution Summary Owner Reporter
#1257 Fixed Fix bugs in Static array handling trancexx Nutster
Description

Encountering a Static array for the second time should cause a redim. Instead it generates an error.

#1258 Fixed TreeView + ContextMenu versus Own window Titlebar. Valik anonymous
Description

left mouse click on window titlebar, directly after opening a treeView contextMenu item, triggers contextMenu of window titlebar.

not sure if there are any other gui items that have this side effect. GUICtrlCreateContextMenu example at leased not.

Environment = 3.3.0.0 under WIN_XP/Service Pack 3 X86 AutoIt:3.3.1.4 (Os:WIN_XP/X86/Service Pack 3 Language:0409 Keyboard:00000409 Cpu:X86)

;left mouse click on window titlebar,
;directly after opening a treeView contextMenu item,
;triggers contextMenu of window titlebar.
;
;not sure if there are any other gui items that have this side effect.
;GUICtrlCreateContextMenu example at leased not.
;
;Environment = 3.3.0.0 under  WIN_XP/Service Pack 3 X86
;AutoIt:3.3.1.4   (Os:WIN_XP/X86/Service Pack 3   Language:0409 Keyboard:00000409 Cpu:X86)

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <TreeViewConstants.au3>
#include <StaticConstants.au3>

Opt('MustDeclareVars', 1)

Example()

Func Example()
	Local $treeview, $generalitem, $aboutitem
	Local $msg, $item, $hItem
	Local $treeview_cc,$generalitem_cc

	GUICreate("My GUI with treeview", 350, 215)

	$treeview = GUICtrlCreateTreeView(6, 6, 100, 150, _
BitOR($TVS_HASBUTTONS, $TVS_HASLINES, $TVS_LINESATROOT, $TVS_DISABLEDRAGDROP, $TVS_SHOWSELALWAYS), $WS_EX_CLIENTEDGE)
	$generalitem = GUICtrlCreateTreeViewItem("General", $treeview)
    $aboutitem = GUICtrlCreateTreeViewItem("About", $generalitem)

	$treeview_cc = GUICtrlCreateContextMenu($treeview)
	GUICtrlCreateMenuItem('$treeview_cc', $treeview_cc)

	$generalitem_cc = GUICtrlCreateContextMenu($generalitem)
	GUICtrlCreateMenuItem('$generalitem_cc', $generalitem_cc)

	GUISetState()
	While 1
		$msg = GUIGetMsg()
		Select
			Case $msg = $GUI_EVENT_CLOSE
				ExitLoop

		EndSelect
	WEnd

	GUIDelete()
EndFunc   ;==>Example
#1259 Fixed scite config, AU3 font settings. Jos anonymous2
Description

scite config, AU3 font settings. setting: "Monospacec Font" versus "Proportional Font". On opening "scite config" this font setting always defaults to "Monospacec Font", even when "Proportional Font" is currenlty used.

Thanks for new Update.

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