VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
12
返回列表 发新帖
楼主: lzcmaomao

求一段VB源代码,使用call调用,求2010至2050的润年

[复制链接]

0

主题

2

帖子

3.00

积分

新手上路

Rank: 1

积分
3.00
发表于 2020-6-1 01:30:01 | 显示全部楼层
Private Sub Command1_Click()
Dim i       As Integer
Dim datTemp As Date

    For i = 2010 To 2050
        datTemp = GetLastDate_Month(DateSerial(i, 2, 1))
        If Day(datTemp) = 29 Then
            Debug.Print i
        End If
    Next i
End Sub

Private Function GetLastDate_Month(ByVal datDate As Date) As Date
    GetLastDate_Month = DateAdd("d", -Day(DateAdd("m", 1, datDate)), DateAdd("m", 1, datDate))
End Function
回复

使用道具 举报

0

主题

14

帖子

6.00

积分

新手上路

Rank: 1

积分
6.00
发表于 2020-7-15 09:30:01 | 显示全部楼层
Private Sub Command1_Click()
Dim i As Integer
With CreateObject("scripting.dictionary")
For i = 2010 To 2050
If Day(DateSerial(i, 3, 0)) = 29 Then .Add i, Nothing
Next
MsgBox Join(.keys, vbCrLf)
End With
End Sub
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表