Foxtable(狐表)用户栏目专家坐堂 → [求助]日期问题


  共有2006人关注过本帖树形打印复制链接

主题:[求助]日期问题

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/3/13 9:17:00 [显示全部帖子]

keydown事件

 

If e.keycode = 32 Then
    Dim cname As String = e.Table.cols(e.Table.colsel).name
    If cname = "第四列" Then
        static ptime As Date = Date.now
        Dim sp As TimeSpan = Date.now - ptime
        ptime = Date.now
        If sp.TotalMilliseconds <= 500 Then '双击
            e.Table.current(cname) = Date.today.AddDays(1)
        Else
            e.Table.current(cname) = Date.today
        End If
        e.cancel = True
    End If
End If


 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/3/13 9:19:00 [显示全部帖子]

或者keydownEdit事件

 

If e.keycode = 32 Then
    Dim cname As String = e.Table.cols(e.Table.colsel).name
    If cname = "第四列" Then
        static ptime As Date = Date.now
        Dim sp As TimeSpan = Date.now - ptime
        ptime = Date.now
        If sp.TotalMilliseconds <= 500 Then '双击
            e.Text = Date.today.AddDays(1)
        Else
            e.Text = Date.today
        End If
        e.cancel = True
    End If
End If


 回到顶部