Group: Forum Members
Posts: 235,
Visits: 309
|
I will give it a try.
Also, I'm having some trouble getting a listview to populate manually after invoking a fill method. IfI use FillTop100Affinity as the formLoad type of population, the list populates. If I do something like below, it does not.
private void buttonSearch_Click(object sender, EventArgs e)
{
if (_Mode == EntitySelectMode.PROGRAM)
{
_Entity.FillOneFromEnrolledProgram(textMRN.Text, _ProgramName);
}
else
{
_Entity.FillTop100Affinity();
//_Entity.FillFromAffinity(textMRN.Text);
}
}
private void listView1_ListPopulating(MicroFour.StrataFrame.UI.ListPopulatingEventArgs e)
{
e.Parameters[0].Value = _Entity;
e.Parameters[1].Value = MicroFour.StrataFrame.Business.BusinessCloneDataType.ClearAndFillFromCompleteTable;
}
|