Foxtable(狐表)用户栏目专家坐堂 → [求助]窗口中的表动态绑定表时,回车不是向下而是向右


  共有1887人关注过本帖平板打印复制链接

主题:[求助]窗口中的表动态绑定表时,回车不是向下而是向右

帅哥哟,离线,有人找我吗?
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:107846 积分:548581 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2018/3/30 22:05:00 [只看该作者]

Dim t As Table = e.Form.Controls("Table1").Table
t.StopRedraw()

If e.Form.Controls("RadioButton1").Checked Then
    t.DataSource  = DataTables("表A")
End If

If e.Form.Controls("RadioButton2").Checked Then
    t.DataSource  = DataTables("表B")
End If

If e.Form.Controls("RadioButton3").Checked Then
    t.DataSource  = DataTables("表C")
End If
t.EnterKeyActionDown = True
t.ResumeRedraw()


 回到顶部