Re: [Gambas-user] sliderbox bug: Still respond to mouse wheel when its disabled

2017-04-28 Thread Fernando Cabral
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,

[Gambas-user] sliderbox bug: Still respond to mouse wheel when its disabled

2017-04-26 Thread Jorge Carrión
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