Hello all
I want to enable(displaymode) a button onstart based on internet available. If internet available then button enabled if not internet then grey out button.
I have tried code below but doesnt work. Having or not having internet, button is always enabled.
If(Connection.Connected,Button2.DisplayMode.Edit,Button2.DisplayMode.Disabled);
on button2 Displaymode properties it is left in blank.
Second question is also related to onstart.
I have a dropdown with months of the year. I want onstart dropdown be setup accord to current month.
I tried code below but no success.
Dropdown1.Selected.Value = Text(Today(), "[$-en-US]mmmm")
Thanks in advance for any help