InvokeSearch on this.oTrans_adapter via Customization?

Trying to invoke a filtered search on one of the UD tables in a customization and return the results to the primary dataset in the entry program, but I’m not getting any results back. Is it possible to do this?

	private void btnSearch_Click(object sender, System.EventArgs args)
{
	SearchOptions _opts = new SearchOptions(SearchMode.ShowDialog);
	_opts.DataSetMode = DataSetMode.RowsDataSet;
	_opts.PreLoadSearchFilter = "Key2 = 'UPS'";
	this.oTrans_adapter.InvokeSearch(_opts);
}

I found it. I was missing this at the end:

 this.oTrans.NofityAll();
1 Like