Adding Minutes to Time Function

  • Thread starter Thread starter Xcelsoft
  • Start date Start date
X

Xcelsoft

I have a database that sends faxes with win fax pro. On
a form there is a control where VB picks up the Time. Is
there a way to add let's say 2 minutes to this time?
Kind of like the DateAdd function but for time.


Thanks,

ET Sherman
 
Assuming you are talking about an Access database then check Access VB Help
on the DateAdd() function.
 
-----Original Message-----
I have a database that sends faxes with win fax pro. On
a form there is a control where VB picks up the Time. Is
there a way to add let's say 2 minutes to this time?
Kind of like the DateAdd function but for time.


Thanks,

ET Sherman
=DateAdd("n",2,[txtTime])
The "n" stands for for minutes.

Roxie Aho
roxiea at usinternet.com
 
Back
Top