MissingMethodException
I have a couple of windows forms that I can't view in design
mode. When I click the design button from Solution Explorer it tries to
open them, but I get a MissingMethodException instead. The method it is
complaining about is OFP.iPACS.Remoting.ServiceBroker.get_ConnectionInfo. Here is the code for the ServiceBroker.ConnectionInfo property:
Private objConnectionInfo As
OFP.iPACS.Messaging.ConnectionInfo
Public ReadOnly Property ConnectionInfo() As
OFP.iPACS.Messaging.ConnectionInfo
Get
Return
objConnectionInfo
End Get
End Property
The most odd part of it is that if I run the code, and use this WinForm I don't
get any exceptions, and my only problem is when I view it in the IDE Designer.
By the way I am using VS 2003, and I do have the service pack installed.
Any help someone could give would be very appreciated.

