G
Guest
Hi,
I am filling a server side listbox in an asp.net app
Each text value for each item in the list is created by concatenating to
string values together.
I want to give the appearance of columns in the drop down list box.
i.e.
jan 2000
feb 2000
mar 2000
however I am getting :
jan 2000
feb 2000
mar 2000
in the list box.
any ideas how to format them so they are nice and cleanly creating columns?
P.S: adding a string with spaces in the middle does nothing.
item.text = string1 & " " & string2
this still only gives 1 space between the two.
thanks
Chris
I am filling a server side listbox in an asp.net app
Each text value for each item in the list is created by concatenating to
string values together.
I want to give the appearance of columns in the drop down list box.
i.e.
jan 2000
feb 2000
mar 2000
however I am getting :
jan 2000
feb 2000
mar 2000
in the list box.
any ideas how to format them so they are nice and cleanly creating columns?
P.S: adding a string with spaces in the middle does nothing.
item.text = string1 & " " & string2
this still only gives 1 space between the two.
thanks
Chris