以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  按B表循环顺序填充到A表  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=162203)

--  作者:蓝蚂蚁
--  发布时间:2021/4/8 19:43:00
--  按B表循环顺序填充到A表

图片点击可在新窗口打开查看此主题相关图片如下:2021-04-08_193737.png
图片点击可在新窗口打开查看

B表,即循环顺序表

图片点击可在新窗口打开查看此主题相关图片如下:2021-04-08_193745.png
图片点击可在新窗口打开查看
自己搞了很久都没有搞好,请教老师,像要实现这样的功能,其代码应该是怎么样写,谢谢。
If e.DataCol.Name = "N1" Then
    If Forms("增加排班").opened()
        MessageBox.Show(0)
        Dim nf As String=Forms("增加排班").Controls("ComboBox2").value
        Dim yf As String=Forms("增加排班").Controls("ComboBox3").value
        Dim ts As Integer=Date.DaysInMonth(nf,yf)
        If e.DataRow("N1") = "中1" Then
            For i As Integer =2 To ts
                    ...........
                    ...........
                    End If
                Next
            Next
        End If
    End If
End If


--  作者:有点蓝
--  发布时间:2021/4/8 20:27:00
--  
……
Dim ts As Integer=Date.DaysInMonth(nf,yf)
dim s1() as string = {"中1","中2",...}
dim idx as integer = array.Indexof(s1, e.DataRow("N1"))
if idx = -1 then return
For i As Integer =2 To ts
idx = idx + 1
if idx = s1.length then idx = 0
      e.DataRow("N" & i) = s1(idx)
end if
Next
……