Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Get month as word
Message
De
21/07/2000 02:48:26
 
 
À
21/07/2000 00:56:53
Information générale
Forum:
Visual Basic
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00395219
Message ID:
00395238
Vues:
12
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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform