Hi, gambas is new to me, but regex is not so new. But I am baffled with the
following result:
str = "A#BB##CCC###"
print RegExp.Replace(str, "[#]+", ";")
A;BB;;CCC;;;
str = "A#BB##CCC###"
print RegExp.Replace(str, "[#][#]*", ";")
A;BB;;CCC;;;
str = "A#BB##CCC###"
print RegExp.Replace(str,
A sliderbox with Enabled property to False still respond to mouse wheel.
I've write a little class as a to workaround with this code:
Export
Inherits SliderBox
Public Const _Similar As String = "SpinBox,SliderBox"
Public Const _drawWith As String = "SliderBox"
Private obs As Observer
Public Su