Option Explicit
Private Sub Command1_Click(Index As Integer)
Dim counter%
counter% = nControl.count
Load nControl(counter%)
With nControl(counter%)
.Width = 1000
.Height = 500
.Left = 50
.Visible = True
.Top = (counter% - 1) * 500 + 50
.Caption = "Control" & counter% ' <-- так никаких пробелов нету
'А если через Str$ то пробелы действительно появляются, но бороться с ними
'можно с помощью Trim$:
'.Caption = "Control" & Trim$(Str$(counter%))
End With
End Sub
Private Sub nControl_Click(Index As Integer)
MsgBox "Control" & Index
End Sub
Сейчас этот форум просматривают: AhrefsBot и гости: 133