Re: [Gambas-user] Custom mouse cursor

2014-12-18 Thread Francis Payne
On 12/18/2014 11:37 PM, Tobias Boege wrote: Thanks for that. Yes, I was using the word "property" a bit loosely = but it was the myLabel.Cursor = New Cursor(Picture["icon:/32/apply"]) bit that I couldn't grasp. Thank you for the prompt response. > On Thu, 18 Dec 2014, Francis Payne wrote: >>

Re: [Gambas-user] Custom mouse cursor

2014-12-18 Thread Tobias Boege
On Thu, 18 Dec 2014, Francis Payne wrote: > > > Hi all - I note that the online documentation mentions that the Mouse > property of a component can be "custom", as in the example given : > > Const custom as integer = -2 > > > The Properties panel in the IDE doesn't list 'Custom', however, at l

[Gambas-user] Custom mouse cursor

2014-12-18 Thread Francis Payne
Hi all - I note that the online documentation mentions that the Mouse property of a component can be "custom", as in the example given : Const custom as integer = -2 The Properties panel in the IDE doesn't list 'Custom', however, at least not in Gambas 3.5.2 Is the Custom property still avail

Re: [Gambas-user] Custom mouse cursor

2009-06-02 Thread BenoƮt Minisini
> Other old issue... > I don't know how I missed that documentation earlier... > But I still have issues with custom cursors. > What are supported picture formats? Or what I'm doing wrong? > My code: > > Public aa As New Cursor(Picture.Load("test.png")) > > DrawingArea1.Mouse = Mouse.Custom > Drawi

Re: [Gambas-user] Custom mouse cursor

2009-05-27 Thread Jussi Lahtinen
Other old issue... I don't know how I missed that documentation earlier... But I still have issues with custom cursors. What are supported picture formats? Or what I'm doing wrong? My code: Public aa As New Cursor(Picture.Load("test.png")) DrawingArea1.Mouse = Mouse.Custom DrawingArea1.Cursor = a

[Gambas-user] Custom mouse cursor

2009-03-04 Thread Jussi Lahtinen
Hi! Me.Mouse = Mouse.Cross Works fine, but I need custom cursor. Me.Mouse = Mouse.Custom Me.Cursor = Picture.Load("pic.png") This is not working, of course... class cursor has only two properties x, y. Where do I put the picture? Thanks! Jussi