GridView issues when using Mouse.Right

New to Gambas? Post your questions here. No question is too silly or too simple.
Post Reply
User avatar
gambafeliz
Posts: 139
Joined: Friday 2nd September 2022 7:50pm
Location: I live in the same city as Picasso

GridView issues when using Mouse.Right

Post by gambafeliz »

Hi

My problem is that when I use the Mouse.Right event on the GridView_Click() it throws me the following error "No mouse event data"

I know it's a known change. But I don't know how to replace the code so that it works like I applied it before with Mouse.Right

Would someone be so kind as to tell me how I can substitute this code to make it work. Thank you
For your misfortunes I am Spanish and I only know Spanish, please, be patient with me, Thank you. :)
User avatar
gambafeliz
Posts: 139
Joined: Friday 2nd September 2022 7:50pm
Location: I live in the same city as Picasso

Re: GridView issues when using Mouse.Right

Post by gambafeliz »

i just fixed it
// Before, Public Sub GridView1_Click() - Now, Solution: the following code
Public Sub GridView1_MouseDown()
  IF Mouse.Right Then
  Endif
End
For your misfortunes I am Spanish and I only know Spanish, please, be patient with me, Thank you. :)
Post Reply