Hi guys i use this code to fill the an epiUltraCombobox filtered with the values of a base form Combobox but the information is not coming up could you please advise? thanks in advance
private static void SearchOnWarehseAdapterFillDropDown()
{
// Wizard Generated Search Method
// You will need to call this method from another method in custom code
// For example, [Form]_Load or [Button]_Click
the retreiver shows every warehouse i just want to show the warehouses when warehse.plant = Combobox.value in this case i call that object with the guidid
If you want to filter by Plant you can do it a couple of ways, but the easiest way to do it without writing any code is use an BAQCombo
The BAQ Combo runs a BAQ to pupulate the dropdown and you can use BAQ Markup Language to tell it what to filter by
Simply write a BAQ that returns the WareHouseCode and Description then in the Filter in the BAQ Set the filter to
Plant = [EpiBinding:OrderRel.Plant] (or whatever dataview / value you are filtering for)