I have a button which launches a a Search on the Sales Order Adapter. I added this through the wizard as a simple search. The search will only allow me to return one record at a time. I want to be able to select like 5 or more rows at a time and then be able to flip through them. How can I modify this code to achieve that?
It is on a Ud40 table. There is a quick search setup on it. That button launches the quick search. It’s showing all the records but it will only let me select one at a time
So the serach window pops up to use my Quick Search on the Sales Order Adapter as it should. However I can’t select more than one record to return to my form. So, yes I can only highlight one record at a time. I want to be able to select multiple and then scroll thru them.
It isn’t a limitation of the UD Table. I’m not searching the UD Table I have a customization over it in which I call the Sales Order Search and in the base form it works correctly. It is something in the way I am calling the Search Adapter.
So you are saying it will let you do the Quick Search and select multiple records if you do the quick search from the Sales Order button but not from a button you created using the same data, correct?
I tried looking into this last night. It appears that the method you are using is deprecated. So I’m assuming there is a newer way. However i couldn’t seem to find what the newer way was. My gut was telling me it had to be something similar to a parameter you set similar to FileDialogs.
this.openFileDialog1.Multiselect = true;
SalesOrderAdapter.ShowSearch() seemed like the way to go for a new way, but I had lots of trouble trying to implement it. It expects a callback function that I was unable to get working in the second argument. I couldn’t seem to find anyone else doing it another way. So perhaps i was looking for nessy.