Reply to thread

First, do you know what Message Queuing is? Its a relatively advanced topic and you should probably do some reading before trying to do a multi-threaded, message enabled application.


Your first problem is that you dont have Message Queueing installed. Its a Windows option so youll have to go to Add/Remove Programs and select Add/Remove Windows Components. I think its available on WinNT, Windows 2000 and XP Pro, but not much else.


If you read the standard windows help on message queuing, it can explain what transactional queues are and how you can use them. It wont explain why youd want to necessarily as thats generally left up to you to decide what technology is best.


Now, if you just want a queue type of object look in System.Collections for the Queue class.


-Nerseus


Back
Top