| View previous topic :: View next topic |
| Author |
Message |
Tdk161 Valued Contributor


Joined: 08 Feb 2005 Posts: 399 Location: ITALY
|
Posted: Mon Nov 10, 2008 3:38 pm Post subject: Table click error? [SOLVED] |
|
|
Hi forum,
I'm trying to intercept the right click on a table with this code
| Code: |
:Grigliaclick
If @MouseDown(R)
Dialog PopUp,Copy|Delete|Move
End
Goto loop
|
but after first right click (popup showed) , every left click on table show the popup
what i wrong?
many tnx in advance for any info
Last edited by Tdk161 on Mon Nov 10, 2008 4:19 pm; edited 1 time in total |
|
| Back to top |
|
 |
uvedese Contributor


Joined: 21 Jan 2006 Posts: 169 Location: Spain
|
Posted: Mon Nov 10, 2008 4:00 pm Post subject: |
|
|
Hi Tdk161:
This code must working correctly:
| Code: | :Grigliaclick
if @equal(@click(B),RIGHT)
Dialog PopUp,Copy|Delete|Move
End
Goto loop |
Good luck |
|
| Back to top |
|
 |
Tdk161 Valued Contributor


Joined: 08 Feb 2005 Posts: 399 Location: ITALY
|
Posted: Mon Nov 10, 2008 4:18 pm Post subject: |
|
|
Work!
Many tnx man |
|
| Back to top |
|
 |
|