Re: [Gambas-user] MIDI Patterns/Sequencer, ! Looking for interested developers !

2014-08-07 Thread sfdadds
Hi Kevin. Thanks. Need to find out how to get you the projects via email. I have not put it up anywhere yet. Thinking about White Island since Sholzy said I could put it up on his site and when he gets time it would turn into a GIT repo. When I originally started the projects I used the Fl

Re: [Gambas-user] GridView not setting Row & Column on right-click Menu event

2014-08-07 Thread DaveOxford1
Many thanks, Shane! I didn't know about RowAt & ColumnAt - very useful. Dave -- View this message in context: http://gambas.8142.n7.nabble.com/GridView-not-setting-Row-Column-on-right-click-Menu-event-tp47692p47698.html Sent from the gambas-user mailing list archive at Nabble.com. -

Re: [Gambas-user] GridView not setting Row & Column on right-click Menu event

2014-08-07 Thread Shane
hi Dave i came across this an hour ago myself what i did was Public mX As Integer Public mY As Integer Public Sub GridView1_MouseMove() mX = Mouse.X mY= Mouse.Y End then you can use Public Sub GridView1_Menu() Row = GridView1.RowAt(mY) Col = GridView1.ColumnAt(mX) End hope th