MSMQ Programming

G

Guest

I am trying to implement MSMQ 2.0 on Win 2K through VB.NET. Can anyone tell me whether there are any events that are fired when any queue is added on message queue?? I came across methods in Platform SDk.Are any events available through VB.NET??
 
R

Robert May

When a queue is added, or a message is added to the queue?

If its when a message is added to the queue, use the MessageQueue.Peek
method (synchronous) or the MessageQueue.BeginPeek/EndPeek methods
(asynchronous) to check for new messages on the queue.

If it's for a queue being added to MSMQ, I'm not sure. :)

Robert

Himali said:
I am trying to implement MSMQ 2.0 on Win 2K through VB.NET. Can anyone
tell me whether there are any events that are fired when any queue is added
on message queue?? I came across methods in Platform SDk.Are any events
available through VB.NET??
 
G

Guest

I m sorry.Plz read "when message is added to queue" in my earlier query.
Thanks a lot Robert!
 

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