Here is a basic version of getting just the bound controls
Console.WriteLine("Only Bound Controls")
For Each LoBusobj As MicroFour.StrataFrame.Business.BusinessLayer In Me.BusinessObjects
For Each locontrol As System.Windows.Forms.Control In LoBusobj.BoundControls
Console.WriteLine("Control Name " & locontrol.Name)
Console.WriteLine("Binding Fld " & CType(locontrol, MicroFour.StrataFrame.UI.Windows.Forms.IBusinessBindable).BindingField)
Next
Next