Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Disable Arrow keys?,Hotkeys,Ico files

Status
Not open for further replies.

august

MIS
Aug 24, 2000
150
PH

PROBLEM 1. How can i disable arrow keys? if i ever want the user to not use the arrow key if i'm on the grid what should i do to make it possible?.

PROBLEM 2. How can i call "HOTKEY" for example i want to include in my form that the user may press "F1 or F2" if the form is running what is the proper way of doing it?.

PROBLEM 3. Where can i download ICONS i mean .ico files?.

Thanks!

August [sig][/sig]
 
august

1.

ON KEY LABEL UPARROW MESSAGEBOX([You have pressed the ...
ON KEY LABEL DNARROW MESSAGEBOX([You have pressed the ...

2.

Don't use F1, you may need it for help
ON KEY LABEL F2 DO procedurename

3.

In Windows Explorer find *.ico or search the Internet for icon files.

Chris [sig][/sig]
 
august

Omitted from previous post

To return the function keys or arrow keys to their normal state:-

ON KEY LABEL UPARROW
ON KEY LABEL DNARROW
ON KEY LABEL F2

Chris
[sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top