Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to find the shortkey and the lastkey value?
Message
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
How to find the shortkey and the lastkey value?
Versions des environnements
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Database:
Visual FoxPro
Divers
Thread ID:
01074037
Message ID:
01074037
Vues:
56
Hi everybody,

Here is the code I have in CancelValidation method:
********************************************************************
*  Description.......: CancelValidation
*  Calling Samples...:
*  Parameter List....:
*  Created by........: ideas by John Koziol /Cetin Basoz
*  Modified by.......: NN
********************************************************************
local llReturn, loObject, laMouseObj[1]
amouseobj(laMouseObj,1)
*loObject = SYS(1270) && Object under mouse
loObject = laMouseObj[1,1]
if vartype(m.loObject) = "O"
	llReturn = inlist(lower(justext(sys(1272, m.loObject))),"cmdcancel","cmdclose") and mdown()
else
	llReturn = .f.
endif

return m.llReturn or lastkey()= 46 or thisform.releasetype = 1 && Alt+C (shortcut for Cancel)
The inlist I added a minute ago, before I forgot about cmdClose button. Now, I want to be able to find the hotkey for this button to include it into the OR condition. I actually know that it's "l" in our system, but what if the form doesn't have a Close button and L stands for something else? It looks like this problem could not be solved, but may be you have some ideas?

Thanks in advance.
If it's not broken, fix it until it is.


My Blog
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform