By Tim Dol - 5/30/2007
I have a BO on a form already populated with data using Me.BO.FillByParent(). I can populate my combo using CopyDataFrom method in the list populating settings but this appears to be using the CurrentDataTable, which includes all the data for the view. Is there anyway to use the CurrentView, which is already filtered? I couldn't see anything so I thought I'd ask before changing my logic.Thanks Tim
|
By Trent L. Taylor - 5/30/2007
There are four options when calling the CopyDataFrom method. You are telling it to pull from the CurrentDataTable rather than the view.
|
By Tim Dol - 5/30/2007
Ah, I guess I should stop using copy and paste from the docs so I can see the other options! Thanks Tim
|
By Trent L. Taylor - 5/30/2007
No problem
|