Form Password

  • Thread starter Thread starter MadCrazyNewbie
  • Start date Start date
M

MadCrazyNewbie

Hey Group,

I would like to Password a form but i would like to have some sort of maths
function to work out the password, nothing to difficult, but something like,
Date + 10 so for example todays date = 23 + 10 = so the password would be
33?

Is this easy to do?

Any links or help would be greatly appriciated

Many Thanks
Si
 
* "MadCrazyNewbie said:
I would like to Password a form but i would like to have some sort of maths
function to work out the password, nothing to difficult, but something like,
Date + 10 so for example todays date = 23 + 10 = so the password would be
33?

Is this easy to do?

Should the password /change/ whenever the application is started? For
your simple calculation, have a look at the properties of the 'DateTime'
datatype. You can use 'DateTime.Now' to get the current date and then
do the calculations with its property values.
 
Back
Top