Hi all,
I have a datagridview with 4 columns. The first column is barcode and I have a button and a textbox. I would like to have a user enter a barcode and on the button click highlight that row. Is the filter the best thing to use in this situation?
I have seen a few people write code to filter on this site, but i seem to get an error that says " cannot perform '=' operation on system.string and system.int32
i know this doesn't do any of the highlighting but I just want to get the records first.
Thanks for the help
I have a datagridview with 4 columns. The first column is barcode and I have a button and a textbox. I would like to have a user enter a barcode and on the button click highlight that row. Is the filter the best thing to use in this situation?
I have seen a few people write code to filter on this site, but i seem to get an error that says " cannot perform '=' operation on system.string and system.int32
Code:
dim tables as datatablecollection = dataset1.tables
dim view1 as new dataview(tables(0))
dim source1 as new bindingsource()
source1.datasource = view1
datagridview1.datasource = source1
source1.filter = "barcode = " textbox1.text
i know this doesn't do any of the highlighting but I just want to get the records first.
Thanks for the help