I want to be able to set a DateTimePicker element to a certain time via AutomationElement. It stores the time as "hh:mm:ss tt" (i.e. 10:45:56 PM).
I get the element as such:
ValuePattern p = AECollection[index].GetCurrentPattern(ValuePattern.Pattern) as ValuePattern;
I believe I have two options:
p.SetValue("9:41:22 AM");
or
p.Current.Value = "9:41:22 AM";
However, the first option simply doesn't work (I read somewhere that this may be broken in .NET 2.0?, I am using .NET 3.0 though). The second option tells me that the element is read only, how can I change the status so that it is not read only? Or more simply, how can I change the time :( ?