Hi, at this moment i need to ask if it is possible to select or set a value on a dataTimePicker from a string using code, when i click to open i have a Form you can see on the attach picture.
string one = 02/12/2008.This time i can't search for the value to match, i have to set the value of the control...How can i do that?
public static void UserCodeMethod1()
{
string startDate = "01/02/2008";
Ranorex.Form rtcForm = ("/form[@controlname='RTCMain']");
Ranorex.DateTime DataTime = rtcForm.FindSingle("/form[@controlname='RTCMain']/container[@controlname='myTimeSel']/container/tabpagelist/tabpage[@controlname='tabTimeframe']/container/datetime[@controlname='dateTimePickerFrom']");
DataTime.Value.....
Thank you