Reading and Writing Ecco Data

Use the EccoItem object to represent a particular Ecco item. This object contains numerous properties, most of which can be both read and written. These properties include:

	MyItem.Company = Text1.Text
	MyItem.Done = Now
	With MyItem 
	    .Company = CompanyText.Text 
	    .BusPhone = PhoneText.Text 
	    .Text = ItemText.Text 
	    Print #1, .FullName, .FaxPhone 
	End With