Renommer des WP et Parts sur plusieurs niveaux

Renommer des WP et Parts sur plusieurs niveaux - VB/VBA/VBS - Programmation

Marsh Posté le 25-06-2013 à 14:54:23    

Bonjour,
 
Nouvelle macro nouveau probleme  :pt1cable:  
 
Voila j ai une macro qui me change le nom de mes WP et Part mais elle n agit pas dans les WP de niveau inferieur alors quelle les identifies.
 
Mon Code :
 
Sub catia_models_list()
         
Dim objRootProductDoc As ProductDocument
Dim mySel As Selection
Dim myProduct As Product
Dim i As Integer
         
        Set objRootProductDoc = CATIA.ActiveDocument
        Set mySel = CATIA.ActiveDocument.Selection
         
    mySel.Search ("'Assembly Design'.Product,sel" )
         For i = 1 To mySel.Count
         Set myProduct = mySel.Item(i).Value
         Set product2 = myProduct.Item
                 
                If Right(myProduct.Name, 2) Like ".*" Then
                lenght = Len(myProduct.Name) - 2
                string1 = Left(myProduct.Name, lenght)
               ' string1 = myProduct.Name
 
myProduct.Name = string1
 
        End If
    Next
 
End Sub
 
Si quelqu un a une solution ...
 
 
Cordialement ...
 
olivier

Reply

Marsh Posté le 25-06-2013 à 14:54:23   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed