Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (433 - 435 of 3931)

Ticket Resolution Summary Owner Reporter
#760 No Bug Regular expression; NUL character in \x## trancexx
Description

It's about null character in \x## pattern. Not working for that one. Example with StringRegExpReplace()

$sString = "abc" & Chr(1) & "def" & Chr(1) & "ghi"

$sNewString = StringRegExpReplace($sString, "\x1", "")

ConsoleWrite("1. " & $sNewString & @CRLF) ; this is as expected



$sString = "abc" & Chr(0) & "def" & Chr(0) & "ghi"

$sNewString = StringRegExpReplace($sString, "\x0", "") 

ConsoleWrite("2. " & $sNewString & @CRLF) ; this is not

Help file suggests that it should work for any ascii character (hex code). I guess this has nothing to do with bugs, it's more like undocumented feature.

#762 Rejected Image Magick Chris86
Description

Could you include image magick in au3? it would be very nice for image editing etc. Just an UDF or something :)

#765 No Bug Tip Text for label not shown after using GUICtrlSetStyle() on that label MrCreatoR <mscreator@…>
Description

Hi,

First please check this thread, where the bug(?) is found.

It seems that when we using GUICtrlSetStyle on Label control (i checked only few more, such as button, checkbox, radio etc.), the tip that was/is set by GUICtrlSetTip() before/after using SetStyle function is not shown (destroyed?).

Reproducing example:

#include <GUIConstants.au3>
#include <StaticConstants.au3>

GUICreate("Test GUI", 250, 150)

$Label = GUICtrlCreateLabel("Test", 70, 45, 53, 15)

GUICtrlSetTip($Label, "My TIP")
GUICtrlSetStyle($Label, BitOr($GUI_SS_DEFAULT_LABEL, $SS_CENTER)) ;That's it, tip is not shown

GUISetState()

While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch
WEnd

P.S

There is a workaround for this issue:

#include <GUIConstants.au3>
#include <Constants.au3>
#include <StaticConstants.au3>
#include <WinAPI.au3>

GUICreate("Test GUI", 250, 150)

$Label = GUICtrlCreateLabel("Test", 70, 45, 53, 15)
GUICtrlSetTip($Label, "My TIP")

$iStyle = _WinAPI_GetWindowLong(GUICtrlGetHandle($Label), $GWL_STYLE)
GUICtrlSetStyle($Label, BitOr($iStyle, $SS_CENTER))

GUISetState()

While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch
WEnd

So my geuss that it's f problem in GUICtrlSetStyle()... Any way, the function should not affect on the Tip creation for the control.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.