| maison  | Hardware  | réseaux  | programmation  | Logiciel  | Dépannage  | systèmes |  
programmation  
  • C /C + + Programming

  • Computer Programming Languages

  • Delphi Programming

  • Programmation Java

  • Programmation JavaScript

  • PHP /MySQL Programmation

  • programmation Perl

  • Programmation Python

  • Ruby Programming

  • Visual Basics programmation
  •  
    Connaissances Informatiques >> programmation >> Visual Basics programmation >> Content
    Comment rechercher un caractère de tabulation dans VBA
    Tôt ou tard, vous allez courir dans une variable String où vous avez besoin de vérifier chaque personnage et identifier un onglet quand il a trouvé l'aide de Visual Basic pour Applications ( VBA) . Dans VBA, vous pouvez utiliser la fonction " CHR" avec le code de caractère ANSI pour déterminer si le caractère est un onglet. Le code est un numéro qui identifie un caractère tel qu'une patte . A " vbTab " peut également être utilisé en VB pour ajouter des onglets à une variable chaîne. Instructions
    1

    créer quatre variables que vous allez utiliser pour vérifier un caractère de tabulation en tapant le code VBA suivant :

    tabString Dim As String

    Dim char comme chaîne

    longueur As Integer

    xCntr As Integer
    2

    Ajouter une chaîne avec un onglet pour la variable « tabString " en ajoutant le code suivant:

    tabString = "bon" et vbTab & " matin "
    3

    obtenir la longueur de la chaîne en entrant la commande suivante :
    longueur de

    = Len ( tabString )
    4

    parcourir chaque caractère de la chaîne et vérifier le caractère de tabulation en utilisant le " (9) Chr " fonction en ajoutant le code VBA suivant :

    char = Gauche ( tabString , 1)

    xCntr = 0 To longueur - 1 x

    tabString = Droite ( tabString , Len ( tabString ) - 1 )

    Si char = Chr ( 9 ) Puis

    MsgBox " numéro index " et xCntr & " est un onglet dans la chaîne. "

    End If

    char = gauche ( tabString , 1) Photos

    Suivant xCntr

    Previous :

    next :
      articles connexes
    ·Comment convertir le HTML en XHTML en VB.Net 
    ·Tutoriel pour SQL VB 
    ·Comment Diviser en VBA 
    ·Comment écrire ActiveX VB6 
    ·Comment puis-je bouffée de zone de texte à une arbore…
    ·Comment utiliser VBA pour faire une contre 
    ·Comment recevoir un SMS en utilisant Visual Basic 
    ·Comment sélectionner des éléments dans un ListBox da…
    ·Comment utiliser l'historique objet VBScript 
    ·Comment faire un Open /Save Button dans VB 
      articles en vedette
    ·Comment obtenir un script de Cookie 
    ·Comment accéder aux données d'un fichier de manière …
    ·Comment compiler un CPP avec un fichier d'en-tête 
    ·Comment faire vos propres jeux vidéo avec Python 
    ·Comment faire pour enregistrer le fichier avec une heur…
    ·PHP et DVD Formation 
    ·Perl : Comment utiliser une variable dans une fonction …
    ·Comment écrire un script VBScript Général 
    ·UNIX C Tutorial 
    ·Comment utiliser les classes ActionScript 3 
    Copyright © Connaissances Informatiques http://fr.wingwit.com