Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to find the shortkey and the lastkey value?
Message
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
How to find the shortkey and the lastkey value?
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01074037
Message ID:
01074037
Views:
55
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
Next
Reply
Map
View

Click here to load this message in the networking platform