I need to make an address book that doesnt use a database.
It suppose to have
First name
Last name
Birthday
Telephone number
Address (street)
Address (city, state, zip)
Email address
All information shall be stored in a structure at run time
The application should read and write to a data file
Make sure the application includes previous, next, add, save, and delete buttons.
When graded by your instructor, there should be at least five entries in the address book
But the book doesnt show me how to do it and the only online stuff I can find is threw databases and nothing else. I asked the teacher and he says no database for this one, the idea is to use flat files (txt) and I have no idea how to even really start this one. This is what I have so far, only thing ive done was code the buttons and text boxes, then after thaat im lost, could someone help me
Public Class Form1
Private Sub txtfirst_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtfirst.TextChanged
End Sub
Private Sub txtlast_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtlast.TextChanged
End Sub
Private Sub txtbirthday_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtbirthday.TextChanged
End Sub
Private Sub txtnumber_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtnumber.TextChanged
End Sub
Private Sub txtstreet_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtstreet.TextChanged
End Sub
Private Sub TextBox3_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged
End Sub
Private Sub txtcity_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtcity.TextChanged
End Sub
Private Sub txtstate_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtstate.TextChanged
End Sub
Private Sub txtzip_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtzip.TextChanged
End Sub
Private Sub txtemail_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtemail.TextChanged
End Sub
Private Sub lblprevious_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblprevious.Click
End Sub
Private Sub lblnext_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblnext.Click
End Sub
Private Sub lbladd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lbladd.Click
End Sub
Private Sub lblsave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblsave.Click
End Sub
Private Sub lbldelete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lbldelete.Click
End Sub
End Class