By Keith Chisarik - 8/25/2006
Where does this go again to automatically repopulate a SF Listbox that uses a Fill method I wrote.
Listview populates from ordersBO, which fills based on the parent BO's primekey. Standard stuff....
Right now it is all working but I have my requery in a buton on the form and connot for thw life of me figure where it goes.
Thanks.
|
By StrataFrame Team - 8/25/2006
You can call the Requery() method wherever you need to. If you need to pass parameters to the Requery() method, you can do it in the Requery() method itself, or you can set the parameters in the ListView.ListPopulating event.
|
By Keith Chisarik - 8/25/2006
I asked the question poorly. What method should I put any code that I want to execute when the record pointer has changed on a BO?
|
By Trent L. Taylor - 8/25/2006
Generally the Navigated event is the best place to add this code.
|