Modify ↓
Opened 11 years ago
Closed 11 years ago
#2916 closed Bug (Fixed)
GUISetCoord() and GUICtrlCreatePic()
| Reported by: | 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 , 11 years ago
comment:2 by , 11 years ago
| Milestone: | → 3.3.15.0 |
|---|---|
| Owner: | set to |
| Resolution: | → Fixed |
| Status: | new → closed |
Fixed by revision [11409] in version: 3.3.15.0
Note:
See TracTickets
for help on using tickets.

Found, Just Wait Jon integrates the proposed fix