I know there must be a simple way to do this but it is eluding me so far. I want to create a short date based on a number entered into a text box. If, for instance, a 12 is entered I would like it to set the default date to 1/12/2004 (current month)

Basicaly I want to do the opposite of this sub that I found in Help
VB Code:
  1. Dim MyDate As Date
  2.         Dim MyDay As Integer
  3.         MyDate = _
  4.             #2/12/1969# ' Assign a date using standard short format.
  5.         MyDay = _
  6.             Microsoft.VisualBasic.DateAndTime.Day(MyDate) ' MyDay contains 12.