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,

Re: [Gambas-user] HttpClient not exposing redirect response codes

2017-04-28 Thread T Lee Davidson
On 04/27/2017 03:01 AM, Benoît Minisini wrote: > Le 25/04/2017 à 19:12, T Lee Davidson a écrit : >> I have run into a couple of sites that are responding with 301 (Moved >> Permanently) and 302 (Moved Temporarily) codes. However, HttpClient.Code >> yields "0" for both of those sites/codes (and

Re: [Gambas-user] HttpClient not exposing redirect response codes

2017-04-28 Thread T Lee Davidson
On 04/27/2017 03:01 AM, Benoît Minisini wrote: > Le 25/04/2017 à 19:12, T Lee Davidson a écrit : >> I have run into a couple of sites that are responding with 301 (Moved >> Permanently) and 302 (Moved Temporarily) codes. However, HttpClient.Code >> yields "0" for both of those sites/codes (and

[Gambas-user] [Gambas Bug Tracker] Bug #1097: Date.ToUnixTime loses a day

2017-04-28 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1097=L21haW4- Comment #2 by T. Lee DAVIDSON: The output I get is: 04/25/2017 20:53:43 04/28/2017 12:07:32 04/27/2017 12:07:32 Lines 1 & 2 are correct at local time (GMT-4) Line 3 is a day behind. With the following: Dim sEpochSeconds As String

[Gambas-user] [Gambas Bug Tracker] Bug #1098: Some parts of a ColorChooser stay active when property Enabled = False

2017-04-28 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1098=L21haW4- Comment #2 by Olivier CRUILLES: Thanks, I confirm it's ok now. -- Check out the vibrant tech community on one of the world's most engaging tech sites,

Re: [Gambas-user] Help needed with drag icon

2017-04-28 Thread bill-lancaster
OK, I had a feeling I was being stupid! I don't need to show an icon anyway, just draw a shape that tracks the mouse during the drag event. Thanks anyway. -- View this message in context: http://gambas.8142.n7.nabble.com/Help-needed-with-drag-icon-tp58829p58835.html Sent from the gambas-user

Re: [Gambas-user] Help needed with drag icon

2017-04-28 Thread bill-lancaster
Thanks Guys, Yes, I had looked at those examples already. They both have code like:- Drag.Icon = Last.Picture Last.Drag(Last.Picture.Image) or Last.Drag(Last.Tag) Drag.Icon = Picture["icon:/32/add"] Problem is that I don't have a last.image or a last.tag. I'm dragging a shape that

Re: [Gambas-user] Help needed with drag icon

2017-04-28 Thread Charlie
Have a look at my previous efforts regarding this here http://gambas.8142.n7.nabble.com/Drag-Icon-td58574.html - Check out www.gambas.one -- View this message in context: