Opened 5 years ago
Closed 4 years ago
#3723 closed Bug (Rejected)
Odd problem with _GUICtrlRichEdit_ReplaceText
Reported by: | qwert | Owned by: | BrewManNH |
---|---|---|---|
Milestone: | Component: | Standard UDFs | |
Version: | 3.3.14.5 | Severity: | None |
Keywords: | RichEdit ReplaceText | Cc: |
Description
After months of observing an odd problem when clearing the text in a RichEdit control, I isolated the statements involved:
_GUICtrlRichEdit_SetSel($hEdit, 0, -1, True)
_GUICtrlRichEdit_ReplaceText($hEdit, "")
The odd part is that every now and then (a third of the time?) the text of the button I use to invoke those statements replaces the contents of the windows clipboard. In other words, if "Clear Text" is the text on the GUI button, then "Clear Text" shows up on the windows clipboard. Strange.
I replaced those statements in the particular script I am working on with: _GUICtrlRichEdit_SetText($hEdit, "") ... which works.
I realize this is an obscure problem, but the next time someone works on the _GUICtrlRichEdit features, they might want to look at it. For now, I'm fine.
Attachments (0)
Change History (4)
comment:1 Changed 5 years ago by BrewManNH
comment:2 Changed 4 years ago by Jpm
- Component changed from AutoIt to Standard UDFs
comment:3 Changed 4 years ago by Jpm
- Owner set to BrewManNH
- Status changed from new to assigned
comment:4 Changed 4 years ago by Jpm
- Resolution set to Rejected
- Status changed from assigned to closed
as no repro script was attached I close it unknown
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.
Can you post an example script that demonstrates the problem? This way we don't have to reinvent the wheel, and might not be doing it the same way as you are doing it.