+// ----------------------------------------------------------------------------
+// helpers
+// ----------------------------------------------------------------------------
+
+bool wxDatePickerCtrl::SendClickEvent()
+{
+ wxDateTime dt(wxDateTime::Today());
+ int16_t month = dt.GetMonth();
+ int16_t day = dt.GetDay();
+ int16_t year = dt.GetYear();
+
+ if(SelectDay(selectDayByMonth,&month,&day,&year,_T("Pick date")));
+}
+