I finally completed a work around that fixed the problem ... I removed the bbsApptResourceBO from the Resource Data Source ... leaving it blank. I then placed this code in the Form_Load event:
ApptResourcesBO.fillAll();
Object resourceID = new Object();
DataTable dtSyatemUsers = ApptResourcesBO.getAll();
foreach (DataRow drUser in dtSyatemUsers.Rows)
{
resourceID = Convert.ToInt32(drUser["apr_UniqueID"]);
Resource resourceUser = new Resource(resourceID, Convert.ToString(drUser["apr_ResourceName"]));
schedulerStorage.Resources.Add(resourceUser);
}
Seemed to work ... time to move off this knarly problem ... would love to find out what the hitch in the giddy-up was. Setting this up the correct way should have been the proper solution ... oh well ... when time is of the essence!
C. T.