Foxtable(狐表)用户栏目专家坐堂 → 单元格多选一录入


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

主题:单元格多选一录入

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


加好友 发短信
等级:超级版主 帖子:113219 积分:576524 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/7/18 20:55:00 [显示全部帖子]

StartEdit事件

If e.Col.Name = "B" AndAlso e.row.isnull("A") = false Then
    e.Cancel = 
True '取消编辑
    Messagebox.Show(
"
A列已有值!","提示",MessageBoxButtons.OK, MessageBoxIcon.Information)
End
 
If

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


加好友 发短信
等级:超级版主 帖子:113219 积分:576524 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/12/5 20:54:00 [显示全部帖子]

Dim t As Table = Tables("当月考勤表2")
dim r as row = t.current
if r is nothing then return
If r.isnull("D5_休班") = False Then
        Messagebox.Show("提示:已考休班!","提示",MessageBoxButtons.OK, MessageBoxIcon.Information)
Else
    '------------------批量填充----------------------
    For i As Integer = t.TopRow To t.BottomRow
        For j As Integer = t.LeftCol To t.RightCol
            If t.Rows(i).IsNull(t.Cols(j).Name) Then
                t.Value(i,j) = "0.5"
            End If
        Next
    Next
End If


 回到顶部