Dim i As Integer, j As Integerj = 0Label1.Caption = ""For i = 1 To 100If i Mod 2 = 0 Thenj = j + 1Label1.Caption = Label1.Caption & i & " "If j Mod 10 = 0 Then Label1.Caption = Label1.Caption & Chr(13)End IfNext