this code i will have an output of
1
12
123
1234
12345 when pressing command 1
Private Sub Command1_Click( )
Label1.Caption = Clear
sides = 5
rows = 1
While rows <= sides
Column = 0
While Column < rows
Column = Column + 1
Label1 = Label1 & Column & Space(1)
Wend
Label1 = Label1 & vbCrLf
rows = rows + 1
Wend
End Sub
Now my problem is to get the output of
1
21
321
4321
54321
can anyone help me do this plz
and also this one
using 2 labels and 1 command button
on the first label1 when u hit command button u will have this output
2 4 6 8 10
then in label 2
1 3 5 7 9
this is the even and odd project
need help in a code.
1
12
123
1234
12345 when pressing command 1
Private Sub Command1_Click( )
Label1.Caption = Clear
sides = 5
rows = 1
While rows <= sides
Column = 0
While Column < rows
Column = Column + 1
Label1 = Label1 & Column & Space(1)
Wend
Label1 = Label1 & vbCrLf
rows = rows + 1
Wend
End Sub
Now my problem is to get the output of
1
21
321
4321
54321
can anyone help me do this plz
and also this one
using 2 labels and 1 command button
on the first label1 when u hit command button u will have this output
2 4 6 8 10
then in label 2
1 3 5 7 9
this is the even and odd project
need help in a code.
Comment