User Profile
Collapse
-
i am just a bit confused here coz in while wend i cannot use the STEP like u use in for the step - 1 im a having a hardtime to convert it
For j = sides - 1 To 0 Step -1 -
wow great
u dont have any idea on how to get it using while wend?
so what if i want to get also this output
''''''''''''''' 1
''''''''''''12
''''''''''123
'''''''1234
''''12345
and also this one
''''''''''''''' ''''1
''''''''''''''' ''123
''''''''''''''1 2345
'''''''''''1234 567
''''''''1234567 89
this one is the...Leave a comment:
-
heres the code
heres the code for the output
1
12
123
1234
12345
Private Sub Command1_Click( )
Label1 = ""
sides = 5
rows = 1
While rows <= sides
Column = 0
While Column < rows
Column = Column + 1
Label1 = Label1 & Column
Wend
Label1 = Label1 & vbCrLf
rows...Leave a comment:
-
need help in while wend loop help me plz
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
... -
can someone help me using nested while wend,in vb6
i already know how to get the output of
1
12
123
1234
12345
using while wend
and now my problem is to show the output of
1
21
321
4321
54321
using while wend with one command button and 1 label
and also
this one
using 2 labels and 1 command button need to to show in one label the even numbers
2 4 6 8 10
and the in label...
No activity results to display
Show More
Leave a comment: