Форум программистов, компьютерный форум, киберфорум
VBA
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.56/9: Рейтинг темы: голосов - 9, средняя оценка - 4.56
0 / 0 / 0
Регистрация: 11.06.2018
Сообщений: 5
1

Как сократить код

11.06.2018, 15:43. Показов 1733. Ответов 9
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Пример написаного кода
Visual Basic
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
'RAD 1
'A mm /////////////////////////////////
'B1R1A
         If TextBoxB1R1A.Value = "" Then
            If AP.IsText(Cells(10, 4)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(10, 4) * 1 <> 0 Then
              TextBoxB1R1A.Value = AP.Cells(10, 4) * 1
         ElseIf AP.Cells(10, 4) * 1 = "" Then
            TextBoxB1R1A.Value = ""
           End If
          End If
'B2R1A
        If TextBoxB2R1A.Value = "" Then
            If AP.IsText(Cells(11, 4)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(11, 4) * 1 <> 0 Then
            TextBoxB2R1A.Value = AP.Cells(11, 4) * 1
        ElseIf AP.Cells(11, 4) * 1 = "" Then
            TextBoxB2R1A.Value = ""
           End If
        End If
'B3R1A
        If TextBoxB3R1A.Value = "" Then
            If AP.IsText(Cells(12, 4)) Then
        GoTo MsgErr:
            End If
           If AP.Cells(12, 4) * 1 <> 0 Then
            TextBoxB3R1A.Value = AP.Cells(12, 4) * 1
        ElseIf AP.Cells(12, 4) * 1 = "" Then
            TextBoxB3R1A.Value = ""
           End If
        End If
'B4R1A
        If TextBoxB4R1A.Value = "" Then
            If AP.IsText(Cells(13, 4)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(13, 4) * 1 <> 0 Then
            TextBoxB4R1A.Value = AP.Cells(13, 4) * 1
        ElseIf AP.Cells(13, 4) * 1 = "" Then
            TextBoxB4R1A.Value = ""
           End If
        End If
'B5R1A
        If TextBoxB5R1A.Value = "" Then
            If AP.IsText(Cells(14, 4)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(14, 4) * 1 <> 0 Then
            TextBoxB5R1A.Value = AP.Cells(14, 4) * 1
        ElseIf AP.Cells(14, 4) * 1 = "" Then
            TextBoxB5R1A.Value = ""
           End If
        End If
'B6R1A
        If TextBoxB6R1A.Value = "" Then
           If AP.IsText(Cells(15, 4)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(15, 4) * 1 <> 0 Then
            TextBoxB6R1A.Value = AP.Cells(15, 4) * 1
        ElseIf AP.Cells(15, 4) * 1 = "" Then
            TextBoxB6R1A.Value = ""
           End If
        End If
'B7R1A
        If TextBoxB7R1A.Value = "" Then
           If AP.IsText(Cells(16, 4)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(16, 4) * 1 <> 0 Then
            TextBoxB7R1A.Value = AP.Cells(16, 4) * 1
        ElseIf AP.Cells(16, 4) * 1 = "" Then
            TextBoxB7R1A.Value = ""
           End If
        End If
'B8R1A
        If TextBoxB8R1A.Value = "" Then
           If AP.IsText(Cells(17, 4)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(17, 4) * 1 <> 0 Then
            TextBoxB8R1A.Value = AP.Cells(17, 4) * 1
        ElseIf AP.Cells(17, 4) * 1 = "" Then
            TextBoxB8R1A.Value = ""
           End If
        End If
'B9R1A
        If TextBoxB9R1A.Value = "" Then
           If AP.IsText(Cells(18, 4)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(18, 4) * 1 <> 0 Then
            TextBoxB9R1A.Value = AP.Cells(18, 4) * 1
        ElseIf AP.Cells(18, 4) * 1 = "" Then
            TextBoxB9R1A.Value = ""
           End If
        End If
'B10R1A
        If TextBoxB10R1A.Value = "" Then
           If AP.IsText(Cells(19, 4)) Then
       GoTo MsgErr:
            End If
        If AP.Cells(19, 4) * 1 <> 0 Then
            TextBoxB10R1A.Value = AP.Cells(19, 4) * 1
        ElseIf AP.Cells(19, 4) * 1 = "" Then
            TextBoxB10R1A.Value = ""
           End If
        End If
'B mm //////////////////////////////////////////
'B1R1B
        If TextBoxB1R1B.Value = "" Then
           If AP.IsText(Cells(10, 5)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(10, 5) * 1 <> 0 Then
            TextBoxB1R1B.Value = AP.Cells(10, 5) * 1
         ElseIf AP.Cells(10, 5) * 1 = "" Then
            TextBoxB1R1B.Value = ""
           End If
          End If
'B2R1B
        If TextBoxB2R1B.Value = "" Then
           If AP.IsText(Cells(11, 5)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(11, 5) * 1 <> 0 Then
            TextBoxB2R1B.Value = AP.Cells(11, 5) * 1
        ElseIf AP.Cells(11, 5) * 1 = "" Then
            TextBoxB2R1B.Value = ""
           End If
        End If
'B3R1B
        If TextBoxB3R1B.Value = "" Then
           If AP.IsText(Cells(12, 5)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(12, 5) * 1 <> 0 Then
            TextBoxB3R1B.Value = AP.Cells(12, 5) * 1
        ElseIf AP.Cells(12, 5) * 1 = "" Then
            TextBoxB3R1B.Value = ""
           End If
        End If
'B4R1B
        If TextBoxB4R1B.Value = "" Then
           If AP.IsText(Cells(13, 5)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(13, 5) * 1 <> 0 Then
            TextBoxB4R1B.Value = AP.Cells(13, 5) * 1
        ElseIf AP.Cells(13, 5) * 1 = "" Then
            TextBoxB4R1B.Value = ""
           End If
        End If
'B5R1B
        If TextBoxB5R1B.Value = "" Then
           If AP.IsText(Cells(14, 5)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(14, 5) * 1 <> 0 Then
            TextBoxB5R1B.Value = AP.Cells(14, 5) * 1
        ElseIf AP.Cells(14, 5) * 1 = "" Then
            TextBoxB5R1B.Value = ""
           End If
        End If
'B6R1B
        If TextBoxB6R1B.Value = "" Then
           If AP.IsText(Cells(15, 5)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(15, 5) * 1 <> 0 Then
            TextBoxB6R1B.Value = AP.Cells(15, 5) * 1
        ElseIf AP.Cells(15, 5) * 1 = "" Then
            TextBoxB6R1B.Value = ""
           End If
        End If
'B7R1B
        If TextBoxB7R1B.Value = "" Then
           If AP.IsText(Cells(16, 5)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(16, 5) * 1 <> 0 Then
            TextBoxB7R1B.Value = AP.Cells(16, 5) * 1
        ElseIf AP.Cells(16, 5) * 1 = "" Then
            TextBoxB7R1B.Value = ""
           End If
        End If
'B8R1B
        If TextBoxB8R1B.Value = "" Then
           If AP.IsText(Cells(17, 5)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(17, 5) * 1 <> 0 Then
            TextBoxB8R1B.Value = AP.Cells(17, 5) * 1
        ElseIf AP.Cells(17, 5) * 1 = "" Then
            TextBoxB8R1B.Value = ""
           End If
        End If
'B9R1B
        If TextBoxB9R1B.Value = "" Then
           If AP.IsText(Cells(18, 5)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(18, 5) * 1 <> 0 Then
            TextBoxB9R1B.Value = AP.Cells(18, 5) * 1
        ElseIf AP.Cells(18, 5) * 1 = "" Then
            TextBoxB9R1B.Value = ""
           End If
        End If
'B10R1B
        If TextBoxB10R1B.Value = "" Then
           If AP.IsText(Cells(19, 5)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(19, 5) * 1 <> 0 Then
            TextBoxB10R1B.Value = AP.Cells(19, 5) * 1
        ElseIf AP.Cells(19, 5) * 1 = "" Then
            TextBoxB10R1B.Value = ""
           End If
        End If
'C mm /////////////////////////////////////////////
'B1R1C
        If TextBoxB1R1C.Value = "" Then
           If AP.IsText(Cells(10, 6)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(10, 6) * 1 <> 0 Then
            TextBoxB1R1C.Value = AP.Cells(10, 6) * 1
         ElseIf AP.Cells(10, 6) * 1 = "" Then
            TextBoxB1R1Ñ.Value = ""
           End If
          End If
'B2R1C
        If TextBoxB2R1C.Value = "" Then
           If AP.IsText(Cells(11, 6)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(11, 6) * 1 <> 0 Then
            TextBoxB2R1C.Value = AP.Cells(11, 6) * 1
        ElseIf AP.Cells(11, 6) * 1 = "" Then
            TextBoxB2R1Ñ.Value = ""
           End If
        End If
'B3R1C
        If TextBoxB3R1C.Value = "" Then
           If AP.IsText(Cells(12, 6)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(12, 6) * 1 <> 0 Then
            TextBoxB3R1C.Value = AP.Cells(12, 6) * 1
        ElseIf AP.Cells(12, 6) * 1 = "" Then
            TextBoxB3R1Ñ.Value = ""
           End If
        End If
'B4R1C
        If TextBoxB4R1C.Value = "" Then
           If AP.IsText(Cells(13, 6)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(13, 6) * 1 <> 0 Then
            TextBoxB4R1C.Value = AP.Cells(13, 6) * 1
        ElseIf AP.Cells(13, 6) * 1 = "" Then
            TextBoxB4R1Ñ.Value = ""
           End If
        End If
'B5R1C
        If TextBoxB5R1C.Value = "" Then
           If AP.IsText(Cells(14, 6)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(14, 6) * 1 <> 0 Then
            TextBoxB5R1C.Value = AP.Cells(14, 6) * 1
        ElseIf AP.Cells(14, 6) * 1 = "" Then
            TextBoxB5R1Ñ.Value = ""
           End If
        End If
'B6R1C
        If TextBoxB6R1C.Value = "" Then
           If AP.IsText(Cells(15, 6)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(15, 6) * 1 <> 0 Then
            TextBoxB6R1C.Value = AP.Cells(15, 6) * 1
        ElseIf AP.Cells(15, 6) * 1 = "" Then
            TextBoxB6R1Ñ.Value = ""
           End If
        End If
'B7R1C
        If TextBoxB7R1C.Value = "" Then
           If AP.IsText(Cells(16, 6)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(16, 6) * 1 <> 0 Then
            TextBoxB7R1C.Value = AP.Cells(16, 6) * 1
        ElseIf AP.Cells(16, 6) * 1 = "" Then
            TextBoxB7R1Ñ.Value = ""
           End If
        End If
'B8R1C
        If TextBoxB8R1C.Value = "" Then
           If AP.IsText(Cells(17, 6)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(17, 6) * 1 <> 0 Then
            TextBoxB8R1C.Value = AP.Cells(17, 6) * 1
        ElseIf AP.Cells(17, 6) * 1 = "" Then
            TextBoxB8R1Ñ.Value = ""
           End If
        End If
'B9R1C
        If TextBoxB9R1C.Value = "" Then
           If AP.IsText(Cells(18, 6)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(18, 6) * 1 <> 0 Then
            TextBoxB9R1C.Value = AP.Cells(18, 6) * 1
        ElseIf AP.Cells(18, 6) * 1 = "" Then
            TextBoxB9R1Ñ.Value = ""
           End If
        End If
'B10R1C
        If TextBoxB10R1C.Value = "" Then
           If AP.IsText(Cells(19, 6)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(19, 6) * 1 <> 0 Then
            TextBoxB10R1C.Value = AP.Cells(19, 6) * 1
        ElseIf AP.Cells(19, 6) * 1 = "" Then
            TextBoxB10R1C.Value = ""
           End If
        End If
'D mm////////////////////////////////////////////
'B1R1D
        If TextBoxB1R1D.Value = "" Then
           If AP.IsText(Cells(10, 7)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(10, 7) * 1 <> 0 Then
            TextBoxB1R1D.Value = AP.Cells(10, 7) * 1
         ElseIf AP.Cells(10, 7) * 1 = "" Then
            TextBoxB1R1D.Value = ""
           End If
          End If
'B2R1D
        If TextBoxB2R1D.Value = "" Then
           If AP.IsText(Cells(11, 7)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(11, 7) * 1 <> 0 Then
            TextBoxB2R1D.Value = AP.Cells(11, 7) * 1
        ElseIf AP.Cells(11, 7) * 1 = "" Then
            TextBoxB2R1D.Value = ""
           End If
        End If
'B3R1D
        If TextBoxB3R1D.Value = "" Then
           If AP.IsText(Cells(12, 7)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(12, 7) * 1 <> 0 Then
            TextBoxB3R1D.Value = AP.Cells(12, 7) * 1
        ElseIf AP.Cells(12, 7) * 1 = "" Then
            TextBoxB3R1D.Value = ""
           End If
        End If
'B4R1D
        If TextBoxB4R1D.Value = "" Then
           If AP.IsText(Cells(13, 7)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(13, 7) * 1 <> 0 Then
            TextBoxB4R1D.Value = AP.Cells(13, 7) * 1
        ElseIf AP.Cells(13, 7) * 1 = "" Then
            TextBoxB4R1D.Value = ""
           End If
        End If
'B5R1D
        If TextBoxB5R1D.Value = "" Then
           If AP.IsText(Cells(14, 7)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(14, 7) * 1 <> 0 Then
            TextBoxB5R1D.Value = AP.Cells(14, 7) * 1
        ElseIf AP.Cells(14, 7) * 1 = "" Then
            TextBoxB5R1D.Value = ""
           End If
        End If
'B6R1D
        If TextBoxB6R1D.Value = "" Then
           If AP.IsText(Cells(15, 7)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(15, 7) * 1 <> 0 Then
            TextBoxB6R1D.Value = AP.Cells(15, 7) * 1
        ElseIf AP.Cells(15, 7) * 1 = "" Then
            TextBoxB6R1D.Value = ""
           End If
        End If
'B7R1D
        If TextBoxB7R1D.Value = "" Then
           If AP.IsText(Cells(16, 7)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(16, 7) * 1 <> 0 Then
            TextBoxB7R1D.Value = AP.Cells(16, 7) * 1
        ElseIf AP.Cells(16, 7) * 1 = "" Then
            TextBoxB7R1D.Value = ""
           End If
        End If
'B8R1D
        If TextBoxB8R1D.Value = "" Then
           If AP.IsText(Cells(17, 7)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(17, 7) * 1 <> 0 Then
            TextBoxB8R1D.Value = AP.Cells(17, 7) * 1
        ElseIf AP.Cells(17, 7) * 1 = "" Then
            TextBoxB8R1D.Value = ""
           End If
        End If
'B9R1D
        If TextBoxB9R1D.Value = "" Then
           If AP.IsText(Cells(18, 7)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(18, 7) * 1 <> 0 Then
            TextBoxB9R1D.Value = AP.Cells(18, 7) * 1
        ElseIf AP.Cells(18, 7) * 1 = "" Then
            TextBoxB9R1D.Value = ""
           End If
        End If
'B10R1D
        If TextBoxB10R1D.Value = "" Then
           If AP.IsText(Cells(19, 7)) Then
       GoTo MsgErr:
            End If
           If AP.Cells(19, 7) * 1 <> 0 Then
            TextBoxB10R1D.Value = AP.Cells(19, 7) * 1
        ElseIf AP.Cells(19, 7) * 1 = "" Then
            TextBoxB10R1D.Value = ""
           End If
        End If
        
'Description/////////////////////
 'B1R1Description
        If TextBoxB1R1Description.Value = "" Then
           If AP.Cells(10, 8) <> 0 Then
            TextBoxB1R1Description.Value = AP.Cells(10, 8)
         ElseIf AP.Cells(10, 8) = "" Then
            TextBoxB1R1Description.Value = ""
           End If
          End If
'B2R1Description
        If TextBoxB2R1Description.Value = "" Then
           If AP.Cells(11, 8) <> 0 Then
            TextBoxB2R1Description.Value = AP.Cells(11, 8)
        ElseIf AP.Cells(11, 8) = "" Then
            TextBoxB2R1Description.Value = ""
           End If
        End If
'B3R1Description
        If TextBoxB3R1Description.Value = "" Then
           If AP.Cells(12, 8) <> 0 Then
            TextBoxB3R1Description.Value = AP.Cells(12, 8)
        ElseIf AP.Cells(12, 8) = "" Then
            TextBoxB3R1Description.Value = ""
           End If
        End If
'B4R1Description
        If TextBoxB4R1Description.Value = "" Then
           If AP.Cells(13, 8) <> 0 Then
            TextBoxB4R1Description.Value = AP.Cells(13, 8)
        ElseIf AP.Cells(13, 8) = "" Then
            TextBoxB4R1Description.Value = ""
           End If
        End If
'B5R1Description
        If TextBoxB5R1Description.Value = "" Then
          If AP.Cells(14, 8) <> 0 Then
            TextBoxB5R1Description.Value = AP.Cells(14, 8)
        ElseIf AP.Cells(14, 8) = "" Then
            TextBoxB5R1Description.Value = ""
           End If
        End If
'B6R1Description
        If TextBoxB6R1Description.Value = "" Then
           If AP.Cells(15, 8) <> 0 Then
            TextBoxB6R1Description.Value = AP.Cells(15, 8)
        ElseIf AP.Cells(15, 8) = "" Then
            TextBoxB6R1Description.Value = ""
           End If
        End If
'B7R1Description
        If TextBoxB7R1Description.Value = "" Then
           If AP.Cells(16, 8) <> 0 Then
            TextBoxB7R1Description.Value = AP.Cells(16, 8)
        ElseIf AP.Cells(16, 8) = "" Then
            TextBoxB7R1Description.Value = ""
           End If
        End If
'B8R1Description
        If TextBoxB8R1Description.Value = "" Then
           If AP.Cells(17, 8) <> 0 Then
            TextBoxB8R1Description.Value = AP.Cells(17, 8)
        ElseIf AP.Cells(17, 8) = "" Then
            TextBoxB8R1Description.Value = ""
           End If
        End If
'B9R1Description
        If TextBoxB9R1Description.Value = "" Then
           If AP.Cells(18, 8) <> 0 Then
            TextBoxB9R1Description.Value = AP.Cells(18, 8)
        ElseIf AP.Cells(18, 8) = "" Then
            TextBoxB9R1Description.Value = ""
           End If
        End If
'B10R1Description
        If TextBoxB10R1Description.Value = "" Then
          If AP.Cells(19, 8) <> 0 Then
            TextBoxB10R1Description.Value = AP.Cells(19, 8)
        ElseIf AP.Cells(19, 8) = "" Then
            TextBoxB10R1Description.Value = ""
           End If
        End If

Хто може подсказать как по другому можно записать?
Ето заполняєтся TextBox із екселю.
Таких страніц есть 10 шт
0
Лучшие ответы (1)
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
11.06.2018, 15:43
Ответы с готовыми решениями:

Слишком длинный типовой код в UserForm VBA. Как сократить код?
Программа выдает ошибку о слишком длинном коде. 1. Есть форма, в форме Multipage с 30 вкладками,...

Помогите как сократить код
В пользовательской форме 60 комбобоксов. В процедуре UserForm_Activate()написал:...

Как можно сократить код
Sub Макрос2() ' ' Макрос2 Макрос ' ' Range(&quot;B20:B28&quot;).Select Range(&quot;B28&quot;).Activate...

Как сократить код макроса и сделать цикл на 12 итераций?
Доброго времени суток. Поможете с циклом? Это автомакрос, который на указанном листе делает...

9
0 / 0 / 0
Регистрация: 11.06.2018
Сообщений: 5
11.06.2018, 15:57  [ТС] 2
https://www.cyberforum.ru/atta... 1528721824

Форма которою заполняю
Миниатюры
Как сократить код  
0
6944 / 2849 / 548
Регистрация: 19.10.2012
Сообщений: 8,723
11.06.2018, 20:54 3
Создать массив элементов, его перебирать. Привязаться к индексу массива.
1
0 / 0 / 0
Регистрация: 11.06.2018
Сообщений: 5
11.06.2018, 23:12  [ТС] 4
Я новичок если можно малениким пример. Я панимаю что это должен быть или массив или цикл. но сосдавать их ищьо не умею. Таких условий должно быть 500 (поскольку ТехтBох-ов есть 500)
нашел пример:
Visual Basic
1
2
3
4
5
6
7
8
9
Dim x As Object, i As Byte, r As Range
    Set r = Sheets(1).[d10:H24]
    For Each x In Me.Controls
        If TypeOf x Is MSForms.TextBox Then
            i = i + 1
            x.Value = r(i)
        End If
    Next
End Sub
он вывалюэться в error на половине дороги (" Run - time error "6" Overflow")
примерно там же где и условия (мой код).

https://www.cyberforum.ru/atta... 1528748201
0
6944 / 2849 / 548
Регистрация: 19.10.2012
Сообщений: 8,723
11.06.2018, 23:18 5
Маленький пример был, но я файл уже убил, не сохранив. Заново создавать файл не хочу, да и не моё это дело.
0
11517 / 3803 / 681
Регистрация: 13.02.2009
Сообщений: 11,222
11.06.2018, 23:44 6
какая задача вообще? к чему эти танцы с бубном?
может проще в редакторе заполнить ControlSource у тексбоксов
0
0 / 0 / 0
Регистрация: 11.06.2018
Сообщений: 5
12.06.2018, 00:17  [ТС] 7
Задача в том: при нажате клавши Load заполонилась форма даними з екселя. дальше даные будут применены при построении графикы у AutoCAD
0
11517 / 3803 / 681
Регистрация: 13.02.2009
Сообщений: 11,222
12.06.2018, 07:25 8
а без нажатия и без кода никак не обойтись?
0
es geht mir gut
11272 / 4756 / 1183
Регистрация: 27.07.2011
Сообщений: 11,439
12.06.2018, 09:36 9
Лучший ответ Сообщение было отмечено ZajazS как решение

Решение

Первую часть (до 'Description/////////////////////) наверное можно сделать так
Visual Basic
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
       Set F = UserForm1 'Ваша форма
       
       For i = 1 To 10
          For j = 4 To 7
              Set TB = F.Controls("TextBoxB" & i & "R1" & Choose(j - 3, "A", "B", "C", "D"))
              If TB.Value = "" Then
                 If AP.IsText(Cells(i + 9, j)) Then GoTo MsgErr
                 If AP.Cells(i + 9, j) * 1 <> 0 Then
                    TB.Value = AP.Cells(i + 9, j) * 1
                 ElseIf AP.Cells(i + 9, j) * 1 = "" Then
                    TB.Value = ""
                 End If
              End If
          Next j
       Next i
3
0 / 0 / 0
Регистрация: 11.06.2018
Сообщений: 5
12.06.2018, 17:09  [ТС] 10
У меня получилось так:


Visual Basic
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
Private Sub CommandButton1_Click()
 Dim fileToOpen As String
    Dim AP As Excel.Application
    Dim WB As Excel.Workbook
    Dim ws As Excel.Worksheet
    Dim i As Integer
    Dim j As Integer
 
Dim TextBoxB1R1A As Integer
    On Error Resume Next
        fileToOpen = FenceCreator.TextBoxBrowse.Text()
             Set AP = Excel.Application
            Set WB = AP.Workbooks.Open(fileToOpen)
            Set ws = WB.Worksheets("measures")
            Set F = FenceCreator
For i = 1 To 10
For j = 4 To 7
     If Controls("TextBoxB" & i & "R1" & Choose(j - 3, "A", "B", "C", "D")).Value = "" Then
       If AP.IsText(Cells(i + 9, j)) Then GoTo MsgErr '.Value
       If AP.Cells(i + 9, j) * 1 <> 0 Then
          F.Controls("TextBoxB" & i & "R1" & Choose(j - 3, "A", "B", "C", "D")).Value = Cells(i + 9, j) * 1
          ElseIf AP.Cells(i + 9, j) * 1 = "" Then
          F.Controls("TextBoxB" & i & "R1" & Choose(j - 3, "A", "B", "C", "D")).Value = ""
     End If
     End If
     If Controls("TextBoxB" & i & "R2" & Choose(j - 3, "A", "B", "C", "D")).Value = "" Then
        If AP.IsText(Cells(i + 9, j + 7)) Then GoTo MsgErr '.Value
        If AP.Cells(i + 9, j + 7) * 1 <> 0 Then
          F.Controls("TextBoxB" & i & "R2" & Choose(j - 3, "A", "B", "C", "D")).Value = Cells(i + 9, j + 7) * 1
        ElseIf AP.Cells(i + 9, j + 7) * 1 = "" Then
          F.Controls("TextBoxB" & i & "R2" & Choose(j - 3, "A", "B", "C", "D")).Value = ""
     End If
     End If
     If Controls("TextBoxB" & i & "R3" & Choose(j - 3, "A", "B", "C", "D")).Value = "" Then
        If AP.IsText(Cells(i + 9, j + 14)) Then GoTo MsgErr '.Value
        If AP.Cells(i + 9, j + 14) * 1 <> 0 Then
          F.Controls("TextBoxB" & i & "R3" & Choose(j - 3, "A", "B", "C", "D")).Value = Cells(i + 9, j + 14) * 1
        ElseIf AP.Cells(i + 9, j + 14) * 1 = "" Then
          F.Controls("TextBoxB" & i & "R3" & Choose(j - 3, "A", "B", "C", "D")).Value = ""
     End If
     End If
     If Controls("TextBoxB" & i & "R4" & Choose(j - 3, "A", "B", "C", "D")).Value = "" Then
        If AP.IsText(Cells(i + 9, j + 21)) Then GoTo MsgErr '.Value
        If AP.Cells(i + 9, j + 21) * 1 <> 0 Then
          F.Controls("TextBoxB" & i & "R4" & Choose(j - 3, "A", "B", "C", "D")).Value = Cells(i + 9, j + 21) * 1
        ElseIf AP.Cells(i + 9, j + 21) * 1 = "" Then
          F.Controls("TextBoxB" & i & "R4" & Choose(j - 3, "A", "B", "C", "D")).Value = ""
     End If
     End If
     
     '''''
     If Controls("TextBoxB" & i & "R5" & Choose(j - 3, "A", "B", "C", "D")).Value = "" Then
       If AP.IsText(Cells(i + 28, j)) Then GoTo MsgErr '.Value
       If AP.Cells(i + 28, j) * 1 <> 0 Then
          F.Controls("TextBoxB" & i & "R5" & Choose(j - 3, "A", "B", "C", "D")).Value = Cells(i + 28, j) * 1
       ElseIf AP.Cells(i + 28, j) * 1 = "" Then
          F.Controls("TextBoxB" & i & "R5" & Choose(j - 3, "A", "B", "C", "D")).Value = ""
     End If
     End If
     If Controls("TextBoxB" & i & "R6" & Choose(j - 3, "A", "B", "C", "D")).Value = "" Then
        If AP.IsText(Cells(i + 28, j + 7)) Then GoTo MsgErr '.Value
        If AP.Cells(i + 28, j + 7) * 1 <> 0 Then
          F.Controls("TextBoxB" & i & "R6" & Choose(j - 3, "A", "B", "C", "D")).Value = Cells(i + 28, j + 7) * 1
        ElseIf AP.Cells(i + 28, j + 7) * 1 = "" Then
          F.Controls("TextBoxB" & i & "R6" & Choose(j - 3, "A", "B", "C", "D")).Value = ""
     End If
     End If
     If Controls("TextBoxB" & i & "R7" & Choose(j - 3, "A", "B", "C", "D")).Value = "" Then
        If AP.IsText(Cells(i + 28, j + 14)) Then GoTo MsgErr '.Value
        If AP.Cells(i + 28, j + 14) * 1 <> 0 Then
          F.Controls("TextBoxB" & i & "R7" & Choose(j - 3, "A", "B", "C", "D")).Value = Cells(i + 28, j + 14) * 1
        ElseIf AP.Cells(i + 28, j + 14) * 1 = "" Then
          F.Controls("TextBoxB" & i & "R7" & Choose(j - 3, "A", "B", "C", "D")).Value = ""
     End If
     End If
     If Controls("TextBoxB" & i & "R8" & Choose(j - 3, "A", "B", "C", "D")).Value = "" Then
        If AP.IsText(Cells(i + 28, j + 21)) Then GoTo MsgErr '.Value
        If AP.Cells(i + 28, j + 21) * 1 <> 0 Then
          F.Controls("TextBoxB" & i & "R8" & Choose(j - 3, "A", "B", "C", "D")).Value = Cells(i + 28, j + 21) * 1
        ElseIf AP.Cells(i + 28, j + 21) * 1 = "" Then
          F.Controls("TextBoxB" & i & "R8" & Choose(j - 3, "A", "B", "C", "D")).Value = ""
     End If
     End If
     ''''''''
    If Controls("TextBoxB" & i & "R9" & Choose(j - 3, "A", "B", "C", "D")).Value = "" Then
       If AP.IsText(Cells(i + 47, j)) Then GoTo MsgErr '.Value
       If AP.Cells(i + 47, j) * 1 <> 0 Then
          F.Controls("TextBoxB" & i & "R9" & Choose(j - 3, "A", "B", "C", "D")).Value = Cells(i + 47, j) * 1
       ElseIf AP.Cells(i + 47, j) * 1 = "" Then
          F.Controls("TextBoxB" & i & "R9" & Choose(j - 3, "A", "B", "C", "D")).Value = ""
     End If
     End If
     If Controls("TextBoxB" & i & "R10" & Choose(j - 3, "A", "B", "C", "D")).Value = "" Then
        If AP.IsText(Cells(i + 47, j + 7)) Then GoTo MsgErr '.Value
        If AP.Cells(i + 47, j + 7) * 1 <> 0 Then
          F.Controls("TextBoxB" & i & "R10" & Choose(j - 3, "A", "B", "C", "D")).Value = Cells(i + 47, j + 7) * 1
        ElseIf AP.Cells(i + 47, j + 7) * 1 = "" Then
          F.Controls("TextBoxB" & i & "R10" & Choose(j - 3, "A", "B", "C", "D")).Value = ""
     End If
     End If
     
Next j
Next i
MsgErr:
    If AP.IsText(Cells(i + 9, j)) Then
          MsgBox "Data type mismatch  in Excel"
    ElseIf AP.IsText(Cells(i + 9, j + 7)) Then
        MsgBox "Data type mismatch  in Excel"
    ElseIf AP.IsText(Cells(i + 9, j + 14)) Then
        MsgBox "Data type mismatch  in Excel"
    ElseIf AP.IsText(Cells(i + 9, j + 21)) Then
        MsgBox "Data type mismatch  in Excel"
    ElseIf AP.IsText(Cells(i + 28, j)) Then
        MsgBox "Data type mismatch  in Excel"
    ElseIf AP.IsText(Cells(i + 28, j + 7)) Then
        MsgBox "Data type mismatch  in Excel"
    ElseIf AP.IsText(Cells(i + 28, j + 14)) Then
        MsgBox "Data type mismatch  in Excel"
    ElseIf AP.IsText(Cells(i + 28, j + 21)) Then
        MsgBox "Data type mismatch  in Excel"
    End If
    AP.Quit
End Sub
Може есть варіант еще сократит
0
12.06.2018, 17:09
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
12.06.2018, 17:09
Помогаю со студенческими работами здесь

Очень длинный код... Кто подскажет как сократить
Sub ВзрывГОСТ() ' ' Давление100 Макрос ' Вычисляет давление в 100 кПа (ГОСТ или НПБ) ' '...

Как сократить код? При запуске кода ошибка Procedure too large
На странице эксель расположено 100 фигур,я написал код чтоб фигуры закрашивались в цвет ячейки,но...

Сократить код
Hello World, помогите придумать обработку замены + 1 +2 +3 итд в цикл, тем самым сократить код ...

Помогите сократить код
Можно ли этот код сократить сделав его по короче, но с теми же функциями. Форма выполняет...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
10
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru