T
Tony
Hello!
Here I add two string. This first one FaultCode has a length between 1 and 3
and the second could be any length.
Now in the list box I want the Description text to start at the same
position. Here is an example what I mean
12 This is a text for 12
123 This is a text for 123
4 This is a text for 4
this.faultCodesListBox.Items.Add(row["FaultCode"].ToString() + " " +
row["Description"].ToString());
How could I format to accomplich this.
//Tony
Here I add two string. This first one FaultCode has a length between 1 and 3
and the second could be any length.
Now in the list box I want the Description text to start at the same
position. Here is an example what I mean
12 This is a text for 12
123 This is a text for 123
4 This is a text for 4
this.faultCodesListBox.Items.Add(row["FaultCode"].ToString() + " " +
row["Description"].ToString());
How could I format to accomplich this.
//Tony