erich.wanker Posted June 25, 2015 Posted June 25, 2015 hello, how can i focuse cells of unicalendarpanel1 / month-view and how can i write in a cell of unicalendarpanel1/month-view ? i search somthing like: myStartDate:TDateTime; myEndDate:TDateTime; unibutton1.onclick begin unicalendarpanel1.selection_start = mystartDate unicalendarpanel1.selection_end = myEndDate unicalendarpanel1.select_the_thing ... and the cells should change the color and how can i write a text in a cell of unicalendarpanel1 / month-view? given is the date and the text ... i search somthing like: unicalendarpanel1.cellperdate('01/01/2015').text := ' 3 activities"; Quote
erich.wanker Posted June 25, 2015 Author Posted June 25, 2015 OK .. sorry ... found it in "DEMO" var E : TUniCalendarEvent; begin UniCalendarPanel1.StartDate:=now; E:=UniCalendarPanel1.Events.Add; E.CalendarId:=1; E.Title:='Meeting'; E.StartDate:=Date; E.EndDate:=Date+0.1; end; Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.