programming command buttons

  • Thread starter Thread starter djbves
  • Start date Start date
D

djbves

I would like to use command buttons on a form to do the
followig actions. The command button named ie powerpoint
should add the instance to a table(new record,save record.)
I want several command buttons on the form to feed several
different entries(categories)in a table.The button should
also trigger a date and time function and auto number
 
-----Original Message-----
I would like to use command buttons on a form to do the
followig actions. The command button named ie powerpoint
should add the instance to a table(new record,save record.)
I want several command buttons on the form to feed several
different entries(categories)in a table.The button should
also trigger a date and time function and auto number
.

its easy to insert a date into a record:

yourformname = now()

the now function gives you the date
 
pulse said:
its easy to insert a date into a record:

yourformname = now()

the now function gives you the date

Well, actually, the Now() function gives you both the date and the time,
as a single date/time value. If you want just the date alone, use the
Date() function.
 
Back
Top