Link to home
Start Free TrialLog in
Avatar of suzyZ
suzyZ

asked on

system date Question

How can i find system date and if the date for example (12/20/2002) program will do something
and if the date is (12/21/2002) program will do something
thank you.
ASKER CERTIFIED SOLUTION
Avatar of hongjun
hongjun
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sanjaykattimani
sanjaykattimani

Probably you are looking for this..

Private Sub Form_Load()

select case date(now)
  case 1
    msgbox "First day of the month"
  case 2
    msgbox "2nd day"
....
  case 31
     msgbox "31st day"

  case else
     msgbox "Other days??? :0 "

End Sub
suzyZ, do you need further assistance? If not please evaluate this question.

hongjun
suzyZ, do you need further assistance? If not please evaluate this question.

hongjun
This question appears to have been abandoned. I will invite a Moderator to close this question if there's no reply from you after seven days.

Suggestion
<points to hongjun>

hongjun