I'm populating a listbox with a dataset, then when I select
a item (partnumber) in the listbox I populate a datgrid with the data pertaining to the selected item. Here's where the problems comes in. If the selected item contains a period i recieve an error. for example if I select
1-56403 the datagrid gets populated fine then I select 1.4324b and I get the error "Can't create child list for field 1." so anything after the period is not showing up.
The binding is as follows
dgpartnum.SetDataBinding(ds, AllParts.SelectedItem.ToString)
Thanks
a item (partnumber) in the listbox I populate a datgrid with the data pertaining to the selected item. Here's where the problems comes in. If the selected item contains a period i recieve an error. for example if I select
1-56403 the datagrid gets populated fine then I select 1.4324b and I get the error "Can't create child list for field 1." so anything after the period is not showing up.
The binding is as follows
dgpartnum.SetDataBinding(ds, AllParts.SelectedItem.ToString)
Thanks