Im trying to calculate the timespan between two list box.
Heres my code....
Heres my code....
DateTime z = DateTime.Parse(listBox2.Items.ToString());
DateTime c = DateTime.Parse(listBox3.Items.ToString());
TimeSpan w = c - z;
listView1.Items.Add(w.ToString());
VulpesPosted Mar 1, 2015, 5:40 PM
Dan VillenaPosted Mar 1, 2015, 6:17 AM
Abhay ShankerPosted Mar 1, 2015, 2:21 AM