Hi
I added two fields, Month and Day in my Employee table extension. I want to fill the month and day from the "Birth date" field on the insert of a new record. What trigger do I use for this? Also, do I need some other function? Below is the code lines I used for extracting the Month and day:
Month := Date2DMY("Birth date", 2);
Day := Date2DMY("Birth date", 1);
Please help.
Thanks