Hey guys, new to the forum as of today and am looking forward to learning a lot from you all. Currently I'm working on a VB basic form for my college programming class. One of the requirements is to display the text in a list box in reverse order and vertically. I have this for the reversal of the text:
lstbxItemsPurchased.Items.Add(StrReverse(txtItemPurch.Text))
However, I have no idea how to make characters displayed vertically and seperately from each other in terms of the line they are one.
Here's a sample but I want this to work regardless of the number of characters entered.
"laptop computer" should become:
r
e
t
u
p
m
o
c
p
o
t
p
a
l
Thanks in advance guys
lstbxItemsPurchased.Items.Add(StrReverse(txtItemPurch.Text))
However, I have no idea how to make characters displayed vertically and seperately from each other in terms of the line they are one.
Here's a sample but I want this to work regardless of the number of characters entered.
"laptop computer" should become:
r
e
t
u
p
m
o
c
p
o
t
p
a
l
Thanks in advance guys