j ai un plan d 'une configuration Et une macro qui change les configs des vues et de la table de nomenclature pour exporté un plan PDF pour chaque configuration.
Malheureusement chaque configs a plus ou moins de pièces et le les bulles automatique disparais et ne réapparaisse pas.
Voici ma macro, je suis pas un pro dans ce domaine c'est ma deuxième. Et la base de la macro vient de ce forum. je tache de faire une macro qui efface les bulles pour les reposer mais je bloc.
Option Explicit
Sub Main()
Dim swApp As SldWorks.SldWorks
Dim swModel As SldWorks.ModelDoc2
Dim swDraw As SldWorks.DrawingDoc
Dim swView As SldWorks.View
Dim swNote As SldWorks.Note
Dim swAnn As SldWorks.Annotation
Set swApp = Application.SldWorks
Set swModel = swApp.ActiveDoc
If swModel.GetType <> swDocumentTypes_e.swDocDRAWING Then
MsgBox "Ouvrir un dessin", vbOKOnly + vbInformation
Exit Sub
End If
Set swDraw = swModel
Set swView = swDraw.GetFirstView
swModel.ClearSelection2 True
While Not swView Is Nothing
Set swNote = swView.GetFirstNote
While Not swNote Is Nothing
If swNote.IsBomBalloon Then
Set swAnn = swNote.GetAnnotation
swAnn.Select3 True, Nothing
End If
Set swNote = swNote.GetNext
Wend
Set swView = swView.GetNextView
Wend
swModel.EditDelete
End Sub