Checking a queue

L

LKH

Does Access/VB Code have the ability to regularly check a queue to see if
there is an item in it that needs to be processed, get the item and then
process it?
 
K

Klatuu

You can use a form timer event to do that. You set the Timer Interval to a
value to tell it how often to fire the timer event. 1 = 1 millisecond, so
1000 is 1 second.

Then you code the timer event of the form to do whatever needs to be done.
 
L

LKH

I've never done this before so here's another question... How do I tell it
where to look (such as for a msg coming in via Outlook and getting an
attachment from the e-mail)?
 
K

Klatuu

The Outlook object model is not my strong suit, so I can't provide any useful
detail for you. I would suggest you post a new question and be specific
about what you want to do, for example:

"I want to use a form timer event to see if new emails have arrived and when
a new email arrives I want to determine if it has an attachement. If it
does, then I want to......"

You will get much better help when your questions clearly describe "What"
you want to do.
 
L

LKH

I will do that - thanks for your help!

Klatuu said:
The Outlook object model is not my strong suit, so I can't provide any useful
detail for you. I would suggest you post a new question and be specific
about what you want to do, for example:

"I want to use a form timer event to see if new emails have arrived and when
a new email arrives I want to determine if it has an attachement. If it
does, then I want to......"

You will get much better help when your questions clearly describe "What"
you want to do.
 

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

Top