I am using the Advanced Form and have set up 7 resources (used as dropdowns). I'm declaratively databinding, which works fine with all of the resources. However I need to do some other things on Insert and Update, and so I'm using the AppointmentInsert and AppointmentUpdate methods. I'm looping through the resource collection by doing the following:
This exact code works perfectly in the AppointmentUpdate method - I'm able to see all of the resources. But for some reason, only the top 5 show in AppointmentInsert. I have no idea what the deal is, but I need access to all of the resources.
Thanks
Shawn Tracy
| For Each res As Resource In e.Appointment.Resources |
| 'Do something with res.Type, res.Key, res.Text |
| Next |
This exact code works perfectly in the AppointmentUpdate method - I'm able to see all of the resources. But for some reason, only the top 5 show in AppointmentInsert. I have no idea what the deal is, but I need access to all of the resources.
Thanks
Shawn Tracy