viewtopic.php?p=509399&hilit=change+fon ... et#p509399
And here is what I came up with:
Code: Select all
EnableExplicit
LoadFont(1, "Segoe UI", 25)
If OpenWindow(0, 0, 0, 500, 450, "Window", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
CalendarGadget(1, 5, 5, 490, 440)
SetWindowTheme_(GadgetID(1), @"", @"")
SetGadgetFont(1, FontID(1))
Repeat
Select WaitWindowEvent()
Case #PB_Event_CloseWindow
End
EndSelect
ForEver
EndIf
