
S1 = ("1." + str1 + Environment.NewLine + str2 + Environment.NewLine + str3 + Environment.NewLine + str4 + Environment.NewLine + str5 + Environment.NewLine) Ĭonsole. Public static string s11 = Address = string.Format("11.XXXXXX") Ĭonsole.WriteLine("Welcome my Address Book Program") ĬhrChoice = Console.ReadLine().Trim() Public static string s10 = Address = string.Format("10.XXXXXX") Public static string s9 = Address = string.Format("9.XXXXXX") Public static string s8 = Address = string.Format("8.XXXXXX") Public static string s7 = Address = string.Format("7.XXXXXX")
#Address book software programs software#
Using Enhilex Address Book Software you can become more organized and more effective in the way you work and play. The Award-winning Enhilex Address Book Software provides a very efficient way to store your personal information, contacts, or any other type of information in a lightweight, fast and easy to search database. Public static string s6 = Address = string.Format("6.XXXXXX") Features - Enhilex Address Book Software. Public static string s5 = Address = string.Format("5.XXXXXX") Public static string s4 = Address = string.Format("4.XXXXXX") Public static string s3 = Address = string.Format("3.XXXXXX") Public static string s2 = Address = string.Format("2.XXXXXX") Public static string s1 = Address = string.Format("1.XXXXXX") Public static string Address = new string
#Address book software programs code#
Here is my code so far for the address book program: using System They just inside strings at the moment for the firstname etc Declaring the strings in the array all as XĬonsole.WriteLine("**********************************") Ĭonsole.WriteLine("Press 1 to Add a new record") Ĭonsole.WriteLine("Press 2 to Remove a record") Ĭonsole.WriteLine("Press 3 to Print book to screen") Ĭonsole.WriteLine("Press 4 to Quit the program") Ĭonsole.WriteLine("Press 5 to Search for a record") Ĭonsole.WriteLine("Press 6 to Edit a record") Ĭonsole.WriteLine("Press 7 to Save entries to txt file") Ĭonsole.WriteLine("Press 8 to Print the txt file") Ĭonverttoin32.Choice = (Console.ReadLine()) Ĭonsole.WriteLine("Please Enter your Lastname") Ĭonsole.WriteLine("Please Enter your Firstname") Ĭonsole.WriteLine("Please Enter your Address") Ĭonsole.WriteLine("Please Enter your Town") Ĭonsole.WriteLine("Please Enter your Postcode") Ĭonsole.WriteLine("Please enter the record you want to remove") įor int (a.RemoveAt ( myArrayList.IndexOf ( Console.ReadLine() ) ) įor (int i = Choice i < a.Length / 5 i++)Ĭonsole.WriteLine(s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11) Ĭonsole.WriteLine("Please enter the record you like to locate:") įor (int i = 1 i <= a.Length i++) Sorting of entries alphabetically in the array would be very helpful for the user to read. Any cell containing “XXXXXX” is now available for use. The array must start with with strings “XXXXXX” and when a record is deleted replace its value with “XXXXXX”. The menu system must offer the following choicesĥ Search for a record using either Surname, Firstname or Road Name The Address format must be : 7, pembroke, newcity (e.g. The Naming format must be : Surname, Firstname (e.g. The address book must store the Names address, postcodes in a 2d array. Hi there I am trying to a create an Address Book program using an 2d array (only).
