The add new method of the Currency Manager fails with my checkbox that is bounded to a data table.
This is how I bound my checkbox to my table.
cbxAvailable.Databindings.Add(“Checked”,invManTable,”IsAvailable”);
This is the Add code that runs when I click the Add button:
myPosition = invManManager.Position;
invManManager.AddNew();
When I run the program I cannot add a new row to my table. How can I fix this?
Bechir BejaouiPosted Dec 21, 2008, 5:45 PM
MariaPosted Dec 17, 2008, 6:03 PM
Hello again.
When I click Add the position does not move it remains on the current item.
Bechir BejaouiPosted Dec 17, 2008, 5:48 PM