I'm working on a programm where I use a seed. This seed should be based on the date, so every single day i get a new value. Using the seed several times a day should not change the value getting back.
This is what my seed looks like:
Randomize
todayValue = Int(50 * Rnd)
Now, how do I base a seed on the date? Is there maybe another way to have a seed based on the date?
Thank you very much!