×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

End Of Month

End Of Month

End Of Month

(OP)
i need Some Code to Find if its the End of the Month
and what month we are Currently on. useing the calendar Control in VB

RE: End Of Month

The end of the month can be done with something like:

If Month(myDate+1) > Month(myDate) Then
' myDate is end of month

The name of the month can be got from :
Format(myDate,"mmmm")

Using "mmmm" above will give June
Using "mmm" above will give Jun
Using "mm" above will give 06
Using "m" above will give 6

Good Luck
johnwm

RE: End Of Month

(OP)
If Month(myDate+1) > Month(myDate) Then
' myDate is end of month

  Were is MyDate Coming from ?
 the example you provided does nothing
 

RE: End Of Month

I assume myDate is your date variable. If you are using the current system date, just use the Now function.

DimensionalSolutions@Core.com
While I welcome e-mail messages, please post all thread activity in these forums for the benefit of all members.

RE: End Of Month

Public Function MonthEnd() As Boolean
Dim myDate As Date

    myDate = Date
    
    myDate = myDate + 11
    
    If Month(myDate + 1) > Month(myDate) Then
        MsgBox myDate & " is the end of the month."
        MonthEnd = True

    Else
        MonthEnd = False

    End If

End Function

This should od it for you.
Derrick

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources