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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top