I have an admin form, myAdminForm, with two date fields, Local.dtmStart and Local.dtmEnd, and a command button that opens another admin form, mySecondForm.
From the MySecondForm I am trying to get the myAdminForm date field values, like this:
myAdminForm af = new myAdminForm();
local.dtmStart = af.Current.Local.dtmStart;
The date fields have Field is dependent on another checked.
The af.Current.Local.dtmStart command, however, is returning nothing.
Has anyone try this? Any ideas?
Thanks,
Stephen