H
Harry Simpson
Me.DataGrid1.DataSource = Me.BarcodeReader1
After a barcodescan The value of :
Me.DataGrid1.Item(e.NewIndex - 1, 0)
is "1234567"
for example.
After grabbing that value I want to set the value in
Me.DataGrid1.Item(e.NewIndex - 1, 0) to ""
Every attempt to set the value results in a run time error but it's not
telling me why. I've googled, search these archives, looked in two books
and can't find where the datagrid's cell can be set to a different value.
Tried
Me.DataGrid1.Item(0, 0) = ""
DataGrid1(0, 0) = ""
Nothing works. Do i need to set another property first??
TIA
Harry
After a barcodescan The value of :
Me.DataGrid1.Item(e.NewIndex - 1, 0)
is "1234567"
for example.
After grabbing that value I want to set the value in
Me.DataGrid1.Item(e.NewIndex - 1, 0) to ""
Every attempt to set the value results in a run time error but it's not
telling me why. I've googled, search these archives, looked in two books
and can't find where the datagrid's cell can be set to a different value.
Tried
Me.DataGrid1.Item(0, 0) = ""
DataGrid1(0, 0) = ""
Nothing works. Do i need to set another property first??
TIA
Harry