QUOTE(drynot @ 29 Sep, 2008 - 09:39 PM)

i find it amazing looking for all sorts of calendar in a web, would it be possible for me as beginner in vb6 to make one for me?
thanks,
drynot

It is quite possible for you to make a VB calendar yourself. Here are some definitions and functions to start with.
Private Sub Command1_Click()
Dim DD As Date ' you can define a variable as type date
DD = Date + 55 'this way you can go forward in your calendar
DD = Date - 100 'and this way backwards
Text2.Text = DD
mm = Month(DD) 'this gives the month of your date 1 - 12
dd = Day(DD) 'this gives the day 1 - 31
ww = Weekday(DD) 'this gives the number of the day
End Sub 'for more information about any of above go upon it at pres F1
This post has been edited by jaakko: 5 Oct, 2008 - 12:21 PM