Hallo,
irgendwie funktioniert bei mir die zeitgesteuerte TNotification nicht. Ich habe auch keine speziellen Berechtigungen gefunden. Betrifft Delphi XE10.
Source:
Code:
var MyNotification: TNotification;
MyNotification := NotificationCenter1.CreateNotification;
MyNotification.Name := 'Test_Reminder'; // Interner Name
MyNotification.AlertBody := 'Testalert';
MyNotification.FireDate := Now+EncodeTime(12, 30, 0, 0);
NotificationCenter1.ScheduleNotification(MyNotification);
Hat jemand einen Tipp für mich?