在delphi中怎样屏蔽键盘的tab键呀
											在delphi中怎样屏蔽键盘的tab键呀谢谢了
 2005-11-22 18:25
	    2005-11-22 18:25
   2005-11-23 11:18
	    2005-11-23 11:18
   2005-11-23 13:20
	    2005-11-23 13:20
  我的目的就是要屏蔽TAB键   
我不想让别人在用我的作品是使用TAB键
可以吗 
 2005-11-23 18:54
	    2005-11-23 18:54
  
 2005-11-24 16:23
	    2005-11-24 16:23
  In form's "keypress" event,insert the code below:
if(key=#9)
  key:=#0;
OK,isn't it?

 2005-11-26 15:28
	    2005-11-26 15:28
   2005-11-30 10:12
	    2005-11-30 10:12