向表中按月添加日期-网行者
Access软件网QQ交流学习群(群号码198465573),欢迎您的加入!
首页 >技术文章> 源码示例


向表中按月添加日期

发表时间:2011/12/15 评论(2) 浏览(9686)  评论 | 加入收藏 | 复制
   
摘 要:向表中按月添加日期,提供了两种方式:
1、按公历添加
2、按自定义月份起始日添加
正 文:

点击下载此附件

1、按公历添加

Private Sub Command8_Click()
    On Error GoTo Err_Command8_Click
    Dim str As String
    Dim firstdayofmonth, lastdayofmonth As Date
    Dim daysofmonth As Integer
    firstdayofmonth = DateSerial(Me.年度, Me.月份, 1)
    lastdayofmonth = DateSerial(Me.年度, Me.月份 + 1, 0)
    daysofmonth = lastdayofmonth - firstdayofmonth
    str = "select * from 表A"
    Set rs = New ADODB.Recordset
    rs.Open str, CurrentProject.Connection, adOpenKeyset, adLockOptimistic
    rs.AddNew
    rs("日期").Value = firstdayofmonth
    rs.Update
    For i = 0 To daysofmonth - 1
        rs.AddNew
        rs("日期") = firstdayofmonth + i + 1
        rs.Update
    Next i
    rs.Close
    Set rs = Nothing
    MsgBox "已添加到表A中"

Exit_Command8_Click:
    Exit Sub

Err_Command8_Click:
    MsgBox Err.Description
    Resume Exit_Command8_Click
End Sub

2、按自定义月份起始日添加

Private Sub Command8_Click()
    On Error GoTo Err_Command8_Click
    Dim str As String
    Dim firstdayofmonth As Date, lastdayofmonth As Date
    Dim daysofmonth As Long, i As Long
    Dim rs As ADODB.Recordset
    firstdayofmonth = DateSerial(IIf(Me.月份 = 1, Me.年度 - 1, Me.年度), IIf(Me.月份 = 1, 12, Me.月份 - 1), 26)
    lastdayofmonth = DateSerial(Me.年度, Me.月份, 25)
    daysofmonth = lastdayofmonth - firstdayofmonth
    str = "select * from 表B"
    Set rs = New ADODB.Recordset
    rs.Open str, CurrentProject.Connection, adOpenKeyset, adLockOptimistic

    For i = 0 To daysofmonth
        rs.AddNew
        rs("日期") = firstdayofmonth + i 
        rs.Update
    Next i


    rs.Close
    Set rs = Nothing
    MsgBox "已添加到表B中"

Exit_Command8_Click:
    Exit Sub

Err_Command8_Click:
    MsgBox Err.Description
    Resume Exit_Command8_Click
End Sub


Access软件网交流QQ群(群号:198465573)
 
 相关文章
【access小品】按月新增记录实例  【todaynew  2010/5/2】
【access入门】按月份显示明细\只显示当前月的数据\根据月份显...  【麥田  2012/2/29】
关于报销教程中office2003无法添加日期控件的解决办法\wi...  【fxs  2012/5/3】
【Access源码示例】按月份的日期区间段查询示例,开始月份至截止...  【麥田  2013/3/14】
【Access入门】按月份合计,按月汇总,按月统计,根据月份合计每...  【麥田  2013/4/25】
常见问答
技术分类
相关资源
文章搜索
关于作者

网行者

文章分类

文章存档

友情链接