I have started with a blank canvas App.
Added Outlook Calendar (Home > Add Screen > Calendar)
This works as expected.
I wanted to programmatically control the dropdownCalendarSelection1, so...
1. dropdownCalendarSelection1.OnChange det to Set(Provider, dropdownCalendarSelection1.SelectedText.Value)
2. I add a label named Label1
3. Label1.Text set to: "Rhamy" (Note this is one of dropdownCalendarSelection1 selection options)
4. Label1.OnSelect set to: Set(Provider, Self.Text)
5. dropdownCalendarSelection1.Default set to: Provider
With this, clicking the Label1 effectively changes the dropdownCalendarSelection1 text to Rhamy but it does not fire the dropdownCalendarSelection1.OnChange event which is what switches calendar and loads new calendar Data. Is there a way to programmatically fire its OnChange?