PtCalendar

Hi,

I’am trying to change the Names of the months of the PtCalendar, my code is like this:

char *Meses = {“Enero”,“Febrero”, “Marzo”…};
PtSetResource(ABW_Calendar, Pt_ARG_CALENDAR_MONTH_NAMES, Meses,0);

But the Names of months never change, I read that I can´t change these names in PhAB. And I’m using it for making my widgets, those it really matters.

Thanks

char *Meses[12] = {“Enero”,“Febrero”, “Marzo”…};

It works

Thanks

Hi again

It´s posible that I select a date from a PtText (or any other widget), and the ptcalendar displays my selected date?

Thanks