D
Dave
Dim iMonth As Integer = 1
Dim strMonth As String = Format(iMonth, "MMMM")
console.write(strMonth)
Output = "MMMM" expected "January"???
what should the code be?
Dim strMonth As String = Format(iMonth, "MMMM")
console.write(strMonth)
Output = "MMMM" expected "January"???
what should the code be?