Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Detect mouse click in grid
Message
De
07/06/2004 17:47:45
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Detect mouse click in grid
Divers
Thread ID:
00910931
Message ID:
00910931
Vues:
60
I have code in a textbox's lostfocus that moves the cursor to the next row same column when the user leaves the current control. However, I need to prevent this happening when the user uses the mouse to click outside (leave) the control. How can I trap for the mouse and cause a dodefault() in the lostfocus?


COLUMN1.TEXT1.LOSTFOCUS:
* I want dodefault for when the mouse is used to leave the control
* by clicking on another control or row.
nkeycode = LASTKEY()
IF (!INLIST(nkeycode, 5, 15))
	NODEFAULT
	WITH THISFORM.GRID
		SKIP IN (.RECORDSOURCE)
	ENDWITH
	IF THISFORM.nrow > 0
		THISFORM.GRID.ACTIVATECELL( THISFORM.nrow + 1, 3)
	ENDIF
ELSE
	DODEFAULT()
ENDIF
.·*´¨)
.·`TCH
(..·*

010000110101001101101000011000010111001001110000010011110111001001000010011101010111001101110100
"When the debate is lost, slander becomes the tool of the loser." - Socrates
Vita contingit, Vive cum eo. (Life Happens, Live With it.)
"Life is not measured by the number of breaths we take, but by the moments that take our breath away." -- author unknown
"De omnibus dubitandum"
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform