1
Try this:
string s = listBox1.SelectedItem.ToString();
string[] items = s.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
DateTime date = DateTime.Parse(items[6] + " " + items[5]);
DateTime time = date + DateTime.Parse(items[7]).TimeOfDay;
string fileName = items[8];
Accepted 0
List box value generate through the FTP connection from the remote system files. That files could be added into listbox with that format. i need to get the details which i was asked u...
0
Sasi,
What is the precise format of the string shown in the ListBox?
How do you create that string?
Zoran
0
No, that length could be vary depends upon the file name, file size and its corresponding date.
0
Does that a constant length for the remaining fields if so
get the required by using Substring
like listbox.selecteditem.tostring().substring(40,10) some thing like that