Please see the video for the issue
Scheduler Control issue
Answers
I resolved the issue after some search on support. I do still have the problem of the resources not showing in the combo drop down. I load the combo with the following code. According to the debug I should have one resource in the list. Would you take a look at that issue please.
Private Sub sub_LoadResources()
Dim SDB As New clsScheduleDB
dtResource = SDB.GetResources("Install")
Me.SchedulerStorage.Resources.Clear()
Me.SchedulerStorage.Resources.DataSource = dtResource
Me.SchedulerStorage.Resources.Mappings.Caption = "FullName"
Debug.Print(SchedulerStorage.Resources.Count)
Me.SchedulerStorage.Resources.Mappings.Color = "lngColor"
Me.SchedulerStorage.Resources.Mappings.Id = "RecordId"
Me.cboResourceGroup.SchedulerControl = Me.SchedulerControl
End Sub
Hi Morris,
Thank you for contacting us. I am afraid I have no idea why this issue occurs. Would you please post here a small sample project, where the problematic behavior can be reproduced? Also, please provide us with a detailed step-by-step guide on how to reproduce this issue. This will allow us to localize the cause of the problem. Thank you for your feedback in advance.
I am glad to hear that you have found a solution to the problem. Thank you for letting us know of your progress. Please feel free to contact us in case of any difficulty. We will be happy to assist you…
I got this resolve after some search on the report site. I still have the problem of the resources not showing in the drop down combo. I use this code to load the combo. My debug statement says I should have one resource in the list but it doesn't show up.
Private Sub sub_LoadResources()
Dim SDB As New clsScheduleDB
dtResource = SDB.GetResources("Install")
Me.SchedulerStorage.Resources.Clear()
Me.SchedulerStorage.Resources.DataSource = dtResource
Me.SchedulerStorage.Resources.Mappings.Caption = "FullName"
Debug.Print(SchedulerStorage.Resources.Count)
Me.SchedulerStorage.Resources.Mappings.Color = "lngColor"
Me.SchedulerStorage.Resources.Mappings.Id = "RecordId"
Me.cboResourceGroup.SchedulerControl = Me.SchedulerControl
End Sub