G
Guest
I have a textbox that holds a product code called txtDtlProdCode.Tex
I insert the values into SQLCE and populate a list view lstOrdersDt
I then check to see that the product code in txtDtlProdCode.Text is in lstOrdersDtl and throw a message if it exists
I then want to find and set the lstOrderDtl.FullRowSelect to the particular item in lstOrdersDtl. I want to do this without a DB Call. Can I
Can i use something along the lines of...
lstOrdersDtl.Items(lstOrdersDtl.SelectedIndices(0)).SubItems(0).Text()
I insert the values into SQLCE and populate a list view lstOrdersDt
I then check to see that the product code in txtDtlProdCode.Text is in lstOrdersDtl and throw a message if it exists
I then want to find and set the lstOrderDtl.FullRowSelect to the particular item in lstOrdersDtl. I want to do this without a DB Call. Can I
Can i use something along the lines of...
lstOrdersDtl.Items(lstOrdersDtl.SelectedIndices(0)).SubItems(0).Text()