I am trying to add the History page in my application which will work like as i shown below:
1st Column: (Date); 2nd column: (Login Time); 3rd Column: (Logout Time)
I added the following code:
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
ListView1.Items.Add(DateString)
ListView1.Items(0).SubItems.Add(TimeOfDay)
End Sub
End Class
This all my efforts now what I am Facing ?
I want to save all the data of this in the settings.
And One more things is I am unknown how to add the Subitem.
The above code will just replace the 1st Items (subitems) as What i want is that it should be changed as for new item...
So I want the fully New code...
Please Help me soon.