Modify

Opened 11 years ago

Closed 10 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.

Change History (2)

comment:1 Changed 11 years ago by Jpm

Found, Just Wait Jon integrates the proposed fix

comment:2 Changed 10 years ago by Jon

  • Milestone set to 3.3.15.0
  • Owner set to Jon
  • Resolution set to Fixed
  • Status changed from new to closed

Fixed by revision [11409] in version: 3.3.15.0

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.