Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
I love string manipulation :)
Message
 
À
27/06/2002 22:29:37
Information générale
Forum:
Visual Basic
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00673152
Message ID:
00673155
Vues:
16
As you discovered, there is no PadL in VB. I have created my own PadL for you (and all other listeners ... like Jean-René ;) )
Private Sub Command1_Click()
    MsgBox PadL("John", "X", 6)
End Sub

Private Function PadL(ByVal pstrString As String, _
                      ByVal pstrPadChar As String, _
                      ByVal pintLen As Integer) As String
    PadL = String$(pintLen - Len(pstrString), pstrPadChar) & pstrString
End Function
>a function on visual foxpro PADL does this:
>strName = "John"
>PADL(strName,6,"XX") -- returns "XXJohn"
>-----------------------------------------
>how do i accomplish this with visual basic?
>-tia
Éric Moreau, MCPD, Visual Developer - Visual Basic MVP
Conseiller Principal / Senior Consultant
Moer inc.
http://www.emoreau.com
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform