Feb 5, 2004 #1 safra Technical User Jan 24, 2001 319 NL Hi, I like to delete selected listview item using the Delete key. I tried the onKeyPress event handler but it doesn't work on the Del key. How can I do this?
Hi, I like to delete selected listview item using the Delete key. I tried the onKeyPress event handler but it doesn't work on the Del key. How can I do this?
Feb 5, 2004 1 #2 whosrdaddy Vendor Mar 11, 2003 4,231 BE use the onkeydown event ... case key of VK_KEYDOWN : begin //delete listview item end; VK_F1 : begin // show helpfile end; ... end; ... http://www.damovo.com Upvote 0 Downvote
use the onkeydown event ... case key of VK_KEYDOWN : begin //delete listview item end; VK_F1 : begin // show helpfile end; ... end; ... http://www.damovo.com
Feb 5, 2004 #3 whosrdaddy Vendor Mar 11, 2003 4,231 BE use the onkeydown event ... case key of VK_DELETE : begin //delete listview item end; VK_F1 : begin // show helpfile end; ... end; ... http://www.damovo.com Upvote 0 Downvote
use the onkeydown event ... case key of VK_DELETE : begin //delete listview item end; VK_F1 : begin // show helpfile end; ... end; ... http://www.damovo.com