Bonjour,
J'ai crée un code qui me permet de dupliquer et de créer des étiquettes sur Illustrator.
Cependant lorsqu'il s'exécute bien qu'il fonctionne il est extrêmement lent sauf quand j'agite la souris au dessus de la fenêtre illustrator.
J'ai l'impression a un soucis de priorité au niveau processeur.
De plus une fois de temps en temps il plante au lancement illustrator avec l'erreur suivante "this operation was canceled" sur la ligne d'ouverture de fichier

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
Public Sub Repro(ByVal Nb As String, ByVal affaire As String, Dte As String, Piece As String, Numero As String)
        Dim Fichier As String = "c:\test\ET1.ai"
        Dim Nbs As Integer = CInt(Nb)
        Dim iframe As Object
        Dim Nbcolonne As Integer = Nbs \ 15
        Dim Liste2(Nbs - 1) As String
        Dim Numserie As String = Numero
        For i As Integer = 0 To Nbs - 1
            Liste2(i) = Numserie
            Numserie = Numserieadd(Numserie)
 
        Next
        Dim PasX As Integer = 80
        Dim PasY As Integer = 20
        Dim X As Integer
        Dim Y As Integer
        Dim Z As Integer
 
        ' Ouverture par illustrator
        Dim Dessin As Object = CreateObject("Illustrator.Application")
        '  Dim FichierOuvert As Object = Dessin.open(Fichier)
        Dim DocumentActif As Object = Dessin.open(Fichier)
 
        With DocumentActif
 
            For Each iframe In .textframes
 
                If iframe.layer.name = "Date" Then
                    .activelayer = .layers(1)
                    For X = 0 To Nbcolonne
                        Dim Nblignemax As Integer
                        Dim Ldebut As Integer
                        If X = 0 Then
                            If Nbs < 15 Then
                                Nblignemax = Nb
                                Ldebut = 1
                            Else
                                Nblignemax = 14
                                Ldebut = 1
                            End If
                        ElseIf X > 0 And X < Nbcolonne Then
                            Nblignemax = 14
                            Ldebut = 0
                        ElseIf X = Nbcolonne Then
                            Nblignemax = (Nb Mod 15) - 1
                            Ldebut = 0
                        End If
 
                        For Y = Ldebut To Nblignemax
 
                            iframe.contents = Dte
                            Dim newitem As Object = .activelayer.textframes.add()
                            newitem.contents = iframe.contents
                            newitem.TextRange.CharacterAttributes.Size = iframe.TextRange.CharacterAttributes.Size
                            newitem.top = iframe.top - Y * PasY
                            newitem.left = iframe.left + X * PasX
 
 
                        Next
                    Next
 
                    Exit For
                End If
 
            Next
 
            For Each iframe In .textframes
 
                If iframe.layer.name = "Affaire" Then
                    .activelayer = .layers(2)
                    For X = 0 To Nbcolonne
                        Dim Nblignemax As Integer
                        Dim Ldebut As Integer
                        If X = 0 Then
                            If Nbs < 15 Then
                                Nblignemax = Nb
                                Ldebut = 1
                            Else
                                Nblignemax = 14
                                Ldebut = 1
                            End If
                        ElseIf X > 0 And X < Nbcolonne Then
                            Nblignemax = 14
                            Ldebut = 0
                        ElseIf X = Nbcolonne Then
                            Nblignemax = (Nb Mod 15) - 1
                            Ldebut = 0
                        End If
 
                        For Y = Ldebut To Nblignemax
                            iframe.contents = affaire
                            Dim newitem As Object = .activelayer.textframes.add()
                            newitem.contents = iframe.contents
                            newitem.TextRange.CharacterAttributes.Size = iframe.TextRange.CharacterAttributes.Size
                            newitem.top = iframe.top - Y * PasY
                            newitem.left = iframe.left + X * PasX
 
                        Next
                    Next
 
                    Exit For
                End If
 
            Next
 
            For Each iframe In .textframes
 
                If iframe.layer.name = "Numero" Then
                    .activelayer = .layers(3)
                    Z = 1
                    For X = 0 To Nbcolonne
                        Dim Nblignemax As Integer
                        Dim Ldebut As Integer
                        If X = 0 Then
                            If Nbs < 15 Then
                                Nblignemax = Nb
                                Ldebut = 1
                            Else
                                Nblignemax = 14
                                Ldebut = 1
                            End If
                        ElseIf X > 0 And X < Nbcolonne Then
                            Nblignemax = 14
                            Ldebut = 0
                        ElseIf X = Nbcolonne Then
                            Nblignemax = (Nb Mod 15) - 1
                            Ldebut = 0
                        End If
 
                        For Y = Ldebut To Nblignemax
                            iframe.contents = Liste2(0)
                            Dim newitem As Object = .activelayer.textframes.add()
                            newitem.contents = Liste2(Z)
                            newitem.TextRange.CharacterAttributes.Size = iframe.TextRange.CharacterAttributes.Size
                            newitem.top = iframe.top - Y * PasY
                            newitem.left = iframe.left + X * PasX
                            Z = Z + 1
 
                        Next
                    Next
 
                    Exit For
                End If
 
            Next
 
            For Each iframe In .textframes
 
                If iframe.layer.name = "Reference" Then
                    .activelayer = .layers(5)
                    For X = 0 To Nbcolonne
                        Dim Nblignemax As Integer
                        Dim Ldebut As Integer
                        If X = 0 Then
                            If Nbs < 15 Then
                                Nblignemax = Nb
                                Ldebut = 1
                            Else
                                Nblignemax = 14
                                Ldebut = 1
                            End If
                        ElseIf X > 0 And X < Nbcolonne Then
                            Nblignemax = 14
                            Ldebut = 0
                        ElseIf X = Nbcolonne Then
                            Nblignemax = (Nbs Mod 15) - 1
                            Ldebut = 0
                        End If
 
                        For Y = Ldebut To Nblignemax
                            iframe.contents = Piece
                            Dim newitem As Object = .activelayer.textframes.add()
                            newitem.contents = iframe.contents
                            newitem.TextRange.CharacterAttributes.Size = iframe.TextRange.CharacterAttributes.Size
                            newitem.top = iframe.top - Y * PasY
                            newitem.left = iframe.left + X * PasX
 
                        Next
                    Next
 
                    Exit For
                End If
 
            Next
 
            Dim Groupe1 As Object
 
            For Each Groupe1 In .groupitems
                If Groupe1.layer.name = "Logo" Then
                    .activelayer = .layers(4)
                    For X = 0 To Nbcolonne
                        Dim Nblignemax As Integer
                        Dim Ldebut As Integer
                        If X = 0 Then
                            If Nbs < 15 Then
                                Nblignemax = Nb
                                Ldebut = 1
                            Else
                                Nblignemax = 14
                                Ldebut = 1
                            End If
                        ElseIf X > 0 And X < Nbcolonne Then
                            Nblignemax = 14
                            Ldebut = 0
                        ElseIf X = Nbcolonne Then
                            Nblignemax = (Nbs Mod 15) - 1
                            Ldebut = 0
                        End If
 
                        For Y = Ldebut To Nblignemax
 
                            Dim Newgroup As Object = .activelayer.groupitems.add()
                            Dim ArtDupli As Object = Groupe1.duplicate(Newgroup)
                            Newgroup.top = Groupe1.top - Y * PasY
                            Newgroup.left = Groupe1.left + X * PasX
 
                        Next
                    Next
 
                    Exit For
                End If
            Next
 
            For Each Groupe1 In .groupitems
                If Groupe1.layer.name = "Predecoupe" Then
                    .activelayer = .layers(7)
                    For X = 0 To Nbcolonne
                        Dim Nblignemax As Integer
                        Dim Ldebut As Integer
                        If X = 0 Then
                            If Nbs < 15 Then
                                Nblignemax = Nb
                                Ldebut = 1
                            Else
                                Nblignemax = 14
                                Ldebut = 1
                            End If
                        ElseIf X > 0 And X < Nbcolonne Then
                            Nblignemax = 14
                            Ldebut = 0
                        ElseIf X = Nbcolonne Then
                            Nblignemax = (Nbs Mod 15) - 1
                            Ldebut = 0
                        End If
 
                        For Y = Ldebut To Nblignemax
 
                            Dim Newgroup As Object = .activelayer.groupitems.add()
                            Dim ArtDupli As Object = Groupe1.duplicate(Newgroup)
                            Newgroup.top = Groupe1.top - Y * PasY
                            Newgroup.left = Groupe1.left + X * PasX
 
                        Next
                    Next
 
                    Exit For
                End If
            Next
 
 
 
        End With
 
 
 
    End Sub

Merci a celui qui a une idée.