Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VFP5 List boxes don't use standard keystrokes
Message
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00146322
Message ID:
00146483
Views:
18
>HELP! I put a list box on a form in VFP5. I've tried every possible row source. I'm trying to select several items in the box (yes, multiselect is enabled). I select an item, shift+end should select all items to the end of the list (like in VFP3.0). The pointer goes to the end of the list, but no additional items are selected.
>
>I've tried the MSKB. I've posted here before. Does anyone know of a workaround for this? If you can make an example in VFP5.0a that works right, I would be very grateful if you would send it to me because I can't figure it out.
>
>Thanks,
>Rock Jensen
>rjensen@howmet.com


Rock,
Add this to the keypress event:
LPARAMETERS nKeyCode, nShiftAltCtrl
if nKeyCode = 49 && Shift End
dodefault()
keyboard "{SHIFT+CTRL+END}"
endif

Robert
Previous
Reply
Map
View

Click here to load this message in the networking platform