当前位置: 代码迷 >> PB >> 屏蔽回车解决方法
  详细解决方案

屏蔽回车解决方法

热度:96   发布时间:2016-04-29 08:45:15.0
屏蔽回车
当用户按下回车时,其实电脑认为是空格,在keydown里怎样处理?

------解决方案--------------------
自定义事件,事件id选pbm_enchange
string ls_1
ls_1=right(text,2)
if ls_1='~r~n' then
text=mid(text,1,len(text) -2)
selecttext(len(text)+1,0)
end if

------解决方案--------------------
探讨
自定义事件,事件id选pbm_enchange
string ls_1
ls_1=right(text,2)
if ls_1='~r~n' then
text=mid(text,1,len(text) -2)
selecttext(len(text)+1,0)
end if

  相关解决方案