Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MSMQ

Status
Not open for further replies.

turtlemaster

Programmer
Oct 4, 2001
93
0
0
US
Trying to create a simple message queueing applicating but I am getting error 429 activex control can't create object. I set the references to include mqoa.dll. I am running XP.

Dim qinfo As new MSMQQueueInfo
Dim q As MSMQQueue
Dim msg As MSMQMessage

qinfo.PathName = "PRIVATE$\test" -- Crashes on this line

I tried createobject just in case and the same error occurs.
 
Perhaps I should try installing the components before creating an instance of them ... duh!!

Note to self: you must first install windows messaging before you can create a message queue.
 
I see that you want to create a private message queue. If msmq was not installed for work group mode, I have found that private queues are not allowed. From what I know is the in this case msmq is looking for ADS (advanced directory service) and not finding it. The Big Viking
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top