Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by newbie1001

  1. newbie1001

    AddItem() throwing "Item cannot be added to a read-only or fixed-size"

    Hi Rhys666, I found the problem, or rather my prof did. SOAP serialized my BindingList<Order> into an array of Order. So what I had to do was convert the resultset back to a binding list. Here is the code I used: private OrderEntryWS.OrderEntryWS objServer = new...
  2. newbie1001

    AddItem() throwing &quot;Item cannot be added to a read-only or fixed-size&quot;

    Hi Rhys666, Thank yo for your response. They are both of BindingList<Orders> type. Order is a class type. Is there any way to change the list from a fixed length to a non fixed length... I am thinking maybe casting. Your thoughts. Cheers
  3. newbie1001

    AddItem() throwing &quot;Item cannot be added to a read-only or fixed-size&quot;

    Hi Guys, I have the following code for a bound data source: private OrderEntryWS.OrderEntryWS objServer = new OrderEntryWS.OrderEntryWS(); private void Form_Load(object sender, EventArgs e) { // Populate the binding source with // all the data from the orders table. // This method is...

Part and Inventory Search

Back
Top