Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (16 - 18 of 3866)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ticket Resolution Summary Owner Reporter
#3723 Rejected Odd problem with _GUICtrlRichEdit_ReplaceText BrewManNH qwert
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.

#2387 Fixed FileOpen - parameters description - Filename of the text file to open. FireFox mlipok
Description

This function can open many file types, not only TXT.

EXAMPLE:

#include <FileConstants.au3> #include <MsgBoxConstants.au3>

Example()

Func Example()

Local Const $sFilePath = @ScriptDir & "\FileOpen.pdf" If FileExists($sFilePath) Then

Local $hFileOpen = FileOpen($sFilePath, $FO_BINARY + $FO_UNICODE) Local $sFileRead = FileRead($hFileOpen) FileClose($hFileOpen) MsgBox($MB_SYSTEMMODAL, "", "Contents of the file:" & @CRLF & $sFileRead)

Else

MsgBox($MB_SYSTEMMODAL, "File not exist", $sFilePath)

EndIf

EndFunc ;==>Example

#2416 Completed PixelChecksum - Constructor and Parameters - not defined default value for hwnd FireFox mlipok
Description

in PixelCheksum in Constructor and Parameters section there is not defined the default value form hwnd parameter.

the same in documentation for: PixelGetColor PixelSearch

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Note: See TracQuery for help on using queries.