Resolved Missing System.Messaging.dll

JimmyFo

Member
Joined
Aug 15, 2005
Messages
13
Programming Experience
1-3
[Resolved]Missing System.Messaging.dll

Hi, I am using VS.NET 2003 Enterprise and am trying to create a VB.Net application that will be able to pass messages to WebSphere MQ. Information I've come across recommends using System.Messaging - however, when I try to import it, it says that namespace is not found/defined. Any suggestions? Thanks.

James
 
Last edited:
An Imports statement is just a shorthand used so you don't have to fully qualify that namespace. In order to use an Imports statment, you must have a reference to that dll. Do you have a reference to that dll? If not, right click on References in the solution explorer, click 'Add Reference..' and in the .NET tab, add System.Messaging.dll.
 
Back
Top