Skip to content

Instantly share code, notes, and snippets.

@MikeSel
Created May 15, 2014 13:45
Show Gist options
  • Save MikeSel/9d3f6f3f5edf4dddedd4 to your computer and use it in GitHub Desktop.
Save MikeSel/9d3f6f3f5edf4dddedd4 to your computer and use it in GitHub Desktop.
Private Function GetMonthName(ByVal monthNum As Integer) As String
Try
Dim strDate As New DateTime(1, monthNum, 1)
Return strDate.ToString("MMM")
Catch ex As Exception
End Try
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment