`I am trying to Setdate in SwfCalender:
SwfWindow(A).SwfWindow(B).SwfCalendar(beginDate).SetDate "1-Feb-2019"
Below are the properties of SwfCalender in ObjectSpy:
"Class Name:=SwfCalendar",
"abs_x:=763",
"abs_y:=252",
"enabled:=True",
"focused:=False",
"height:=20",
"hwnd:=199244",
"is child window:=True",
"is owned window:=False",
"nativeclass:=WindowsForms10.SysDateTimePick32.app.0.13965fa_r25_ad1",
"swfname:=dtpBeginDate",
"swfname path:=dtpBeginDate;picCriteria;frmReports;;frmMain",
"swftypename:=System.Windows.Forms.DateTimePicker",
"visible:=True",
"width:=100",
"window id:=0",
"x:=771",
"y:=260"
Using Descriptive Programing to identify object. Not getting any error but unable to select date.
beginDate("enabled").Value= True,
beginDate("swfname").Value="dtpBeginDate",
beginDate("swfname path").Value="dtpBeginDate;picCriteria;frmReports;;frmMain"
I am trying to identify SwfCalender object and try to set specific date. Please let me know if any other info is required and provide solution if anyone had gone through this problem.`