[Done] Options Before Flags
Posted: Wed Mar 27, 2013 4:57 am
When selecting #PB_Calendar_Borderless option for calendar gadget this code is produced
It will not work because there also needs to be at least a 0 or a date inserted before the flag
This is something to look out for with gadgets that use more optional/s before the flags as values need to be there too.
Code: Select all
Calendar_0 = CalendarGadget(#PB_Any, 12, 63, 258, 197, #PB_Calendar_Borderless)
Code: Select all
Calendar_0 = CalendarGadget(#PB_Any, 12, 63, 258, 197, 0, #PB_Calendar_Borderless)