VB Code:
  1. Function Convert_Date_Int2Str(Date_Int As String) As String
  2.  
  3. Select Case Date_Int
  4.   Case 1
  5.     Convert_Date_Int2Str = "January"
  6.   Case 2
  7.     Convert_Date_Int2Str = "February"
  8.   Case 3
  9.     Convert_Date_Int2Str = "March"
  10.   Case 4
  11.     Convert_Date_Int2Str = "April"
  12.   Case 5
  13.     Convert_Date_Int2Str = "May"
  14.   Case 6
  15.     Convert_Date_Int2Str = "June"
  16.   Case 7
  17.     Convert_Date_Int2Str = "July"
  18.   Case 8
  19.     Convert_Date_Int2Str = "August"
  20.   Case 9
  21.     Convert_Date_Int2Str = "September"
  22.   Case 10
  23.     Convert_Date_Int2Str = "October"
  24.   Case 11
  25.     Convert_Date_Int2Str = "November"
  26.   Case 12
  27.     Convert_Date_Int2Str = "December"
  28. End Select
  29. End Function

Hi All
Im still working on my project here is another one for you all
when my program runs it accepts day , month, year from list boxes.
the boxes are text. Now i have to convert them to numbers uptop i only have the one for the month. Is there a easyer way????

Thanks Ed