From: Patrick Spence Date: 2006-08-26T01:04:31+09:00 Subject: Re: .NET dll in Ruby Sam Smoot wrote: > I've used WIN32OLE with .NET COM wrappers just fine... > > regasm /tlb /codebase mywrapper.dll > > obj = WIN32OLE.new 'MyWrapper.AwesomeObject' > obj.DoSomethingReallyCool() > Ok, I've got that working, well, sort of... The class has several public properties and one public method. The only methods that show up via any of the "ole_*" methods, are the IDispatch methods; QueryInterface, AddRef, Release, etc.. Interestingly enough, however, I am able to assign a value to one of the public properties w/o Ruby choking. Is there some reason they don't show up? -- Posted via http://www.ruby-forum.com/.