Modify

Opened 11 years ago

Closed 11 years ago

#2916 closed Bug (Fixed)

GUISetCoord() and GUICtrlCreatePic()

Reported by: Synix <cross.fire@…> Owned by: Jon
Milestone: 3.3.15.0 Component: AutoIt
Version: 3.3.12.0 Severity: None
Keywords: Cc:

Description

The width and height parameter of GUISetCoord() don't affect GUICtrlCreatePic().
See:

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

Opt("GUICoordMode", 2)
GUICreate("")
GUISetCoord(25, 25, 75, 75)
GUICtrlCreateEdit("", -1, -1)
GUICtrlCreateLabel("", 10, -1, -1, -1, $SS_SUNKEN)
GUICtrlCreatePic("", 10, -1, -1, -1, $SS_SUNKEN)
GUISetState()

Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE

All controls should have the same size.

Attachments (0)

Change History (2)

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

Found, Just Wait Jon integrates the proposed fix

comment:2 by Jon, 11 years ago

Milestone: 3.3.15.0
Owner: set to Jon
Resolution: Fixed
Status: newclosed

Fixed by revision [11409] in version: 3.3.15.0

Modify Ticket

Action
as closed The owner will remain Jon.

Add Comment


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