Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Get month as word
Message
From
21/07/2000 02:48:26
 
 
To
21/07/2000 00:56:53
General information
Forum:
Visual Basic
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00395219
Message ID:
00395238
Views:
11
Try this following function to get 3 char format type of month:

Function Get3CharMonth(ByVal pMonth As Integer)
Dim mStringMonth As String
Dim mMonth As String
mStringMonth = "JanFebMarAprMeiJunJulAgsSepOktNovDes"
mMonth = Mid(mStringMonth, pMonth * 3 - 2, 3)
Get3CharMonth = mMonth
End Function
Previous
Reply
Map
View

Click here to load this message in the networking platform