当前位置: 代码迷 >> PB >> PB在窗口上按一个键open另一个窗口,该怎么解决
  详细解决方案

PB在窗口上按一个键open另一个窗口,该怎么解决

热度:124   发布时间:2016-04-29 09:14:48.0
PB在窗口上按一个键open另一个窗口
如何在一个窗口上按键盘上的一个键来打开另一个窗口?初学,请大侠赐教

------解决方案--------------------
SQL code
自定义事件keydown: Event ID:Pbm_keydown 在该时间写上要执行的代码:如if KeyDown(keyF1!) then    Open(w_help)elseif keydown(keyescape!) then     close(this)end if
  相关解决方案