在Keydown事件中,点击鼠标左键 if e.KeyCode = Keys.LButton then Dim dr as Row = Tables("员工选择_Table1").Current '获得选定行 If dr Is Nothing Then Return End If dr.checked = true End if
2楼
baoxyang 发表于:2009/10/30 13:37:00
上面代码不执行不知错在哪?请各位指点!
3楼
blackzhu 发表于:2009/10/30 14:00:00
if e.KeyCode = Keys.LButton then Dim dr as Row = Tables("员工选择_Table1").Current '获得选定行 If dr Is Nothing Then Return End If (是不是要改成Else) dr.checked = true End if 意思是不是如果为空的话,返回!否则执行!