0

I'm working on a VB.NET project, and I'm looking to set a watch on a COM object in Visual Studio 2010, but I cannot get anything useful if I simply set the watch on object FooBar. When I expand the menu, all I get is the property:

 System.__ComObject

I'm looking for something a little more detailed than that, because I know that FooBar has properties like FooBar.Version, FooBar.CurrentItem, etc., but I can only set watches on properties that I explicitly know. Is there a way to view all the properties FooBar has at once?

codo-sapien
  • 833
  • 3
  • 14
  • 24

1 Answers1

1

Have a look at this related post Is there a tool for exploring/testing COM objects?

Which points you to the tool OLEView. This should do what you want

Community
  • 1
  • 1
Matt Wilko
  • 26,994
  • 10
  • 93
  • 143