It's supposed to pre-populate a field with the current date/time
Code: Select all
on preOpenCard
put the long date into varNowDate
set the text of field "fldDateAllottStart" to varNowDate
end preOpenCard
I have this in the card script.
Mike
Moderators: Klaus, FourthWorld, heatherlaine, robinmiller, kevinmiller
Code: Select all
on preOpenCard
put the long date into varNowDate
set the text of field "fldDateAllottStart" to varNowDate
end preOpenCard
Code: Select all
on preOpenCard
put the long date into varNowDate
put varNowDate into fld "fldDateAllottStart"
end preOpenCard
Code: Select all
put varNowDate into fld "fldDateAllottStart" of grp "yourgroup" of cd "yourcard"