Modify

Opened 16 years ago

Closed 16 years ago

#1580 closed Bug (Fixed)

Bug in example script for _GUICtrlRebar_Create()

Reported by: PsaltyDS Owned by: J-Paul Mesnage
Milestone: 3.3.7.0 Component: Documentation
Version: 3.3.6.1 Severity: None
Keywords: _GUICtrlRebar_Create Example Cc:

Description

Ref user report by HighGuy: http://www.autoitscript.com/forum/index.php?showtopic=113245

When the example script GUI for _GUICtrlRebar_Create() is minimized and restored, the input box loses is position on the ReBar. Should have use the UDF _GuiCtrlEdit_Create() control vice the native GuiCtrlCreateInput(). These changes fix it:

#include <GuiEdit.au3>

; ...

Func _Main()

	; ...

	; create a input box to put in the rebar
	; $hInput = GUICtrlCreateInput("Input control", 0, 0, 120, 20)
	$hInput = _GUICtrlEdit_Create($hgui, "Input control", 0, 0, 120, 20)

	; ...

	;add another control
	; _GUICtrlReBar_AddBand($hReBar, GUICtrlGetHandle($hInput), 120, 200, "Name:")
	_GUICtrlRebar_AddBand($hReBar, $hInput, 120, 200, "Name:")

	; ...

EndFunc   ;==>_Main

Attachments (0)

Change History (1)

comment:1 by J-Paul Mesnage, 16 years ago

Milestone: 3.3.7.0
Owner: set to J-Paul Mesnage
Resolution: Fixed
Status: newclosed

Fixed by revision [5766] in version: 3.3.7.0

Modify Ticket

Action
as closed The owner will remain J-Paul Mesnage.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.