Modify ↓
Opened on Jun 5, 2012 at 12:48:33 AM
Closed on Jun 5, 2012 at 5:45:20 PM
#2211 closed Bug (Duplicate)
Only one RichEdit control can be created
| Reported by: | Owned by: | ||
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.8.1 | Severity: | None |
| Keywords: | RichEdit | Cc: |
Description
This problem caused by the strange change in 3.3.8.1 for _GUICtrlRichEdit_Create function:
If Not _WinAPI_IsClassName($hWnd, $_GRE_sRTFClassName) Then Return SetError(1, 0, 0)
In previous versions it was different (wright(?)):
If Not IsHwnd($hWnd) Then Return SetError(1, 0, 0)
Why this change?
Because of this, now we can't create more than one RichEdit controls.
Attachments (0)
Change History (2)
comment:2 by , on Jun 5, 2012 at 5:45:20 PM
| Resolution: | → Duplicate |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

This has been fixed in the latest beta, see ticket 2077. In 3.3.8.1, just delete that line or modify it to what's in the new beta version.