Quote Originally Posted by Shuja Ali
First of all I am confused. If you are creating a property why would it be private?

To have the property use array, you will need to declare the property as array
Code:
	
//private member that will hold the data
private string[] acAccountNote;
public string[] AccountNote 
{
	get
	{
		return acAccountNote;
	}
	set
	{
		acAccountNote = value;
	}
}
oops sorry lol, it is public in my code just I typed it wrong on this hehe. guess i should start copy and pasting Thanks for the help it works now!!