Re: CTRL_HOME
- Posted by John Coonrod <jc at THP.ORG> Jun 05, 2000
- 460 views
If you use win32lib and use the OnKeyDown(scancode,shift) procedure, then for control-home you get shift=2 and scancode=36. This works. ===== Original Message from Euphoria Programming for MS-DOS <EUPHORIA at LISTSERV.MUOHIO.EDU> at 6/05/00 12:20 pm >CTRL_HOME=375 > >it doesnt work > >how do i know when user presses CTRL+Home? > >this code doesnt work: > >if msg=WM_KEYDOWN then > if wParam=CTRL_HOME then > msgbox("yes") > end if >end if > >any suggestions? > >thanks.