MSMQ Programming

  • Thread starter Thread starter Guest
  • Start date Start date
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??
 
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??
 
I m sorry.Plz read "when message is added to queue" in my earlier query.
Thanks a lot Robert!
 
Back
Top