Home » U++ Library support » CalendarCtrl » SetEditable option not working in Calendar
SetEditable option not working in Calendar [message #43928] |
Fri, 21 November 2014 13:07 |
awksed
Messages: 68 Registered: April 2012
|
Member |
|
|
To make the SetEditable option in Calendar work the following needs to be added.
void Calendar::OnMonthLeft()
{
if(IsReadOnly())
return;
void Calendar::OnMonthRight()
{
if(IsReadOnly())
return;
void Calendar::OnYearLeft()
{
if(IsReadOnly())
return;
void Calendar::OnYearRight()
{
if(IsReadOnly())
return;
void Calendar::LeftDown(Point p, dword keyflags)
{
if(IsReadOnly())
return;
Cheers.
|
|
|
Goto Forum:
Current Time: Sat Apr 26 09:43:52 CEST 2025
Total time taken to generate the page: 0.01152 seconds
|