A family of Microsoft relational database management systems designed for ease of use.
This is called an "Intelligent Key" - and unfortunately that's NOT a compliment. All fields - especially unique identifiers - should be "Atomic", having only one piece of information. Storing a date concatenated with a count does not make the field any more unique (than an Autonumber, say); it just makes it harder to understand and to maintain.
If you're concerned about someone hacking your backend, remember they can hack your [cnt] field just as easily as they can delete a record. You're better off securing your back end (in SQL/Server or another true Client/Server database).
That said... if your intent is to stamp each record with the date it was generated and a sequential count of which record it was on that day, I'd just use two fields, DateGenerated (default value =Date()), and Seq, assigned sequentially by either code on your data entry form or in a Table On Insert trigger.