From: Jeff Miller Date: 2008-04-02T06:10:36+09:00 Subject: Ruby equivalent to VB Syntax... Hello, I am doing some CDO stuff with Ruby, but all the tutorials are in VB (lame!!) so I was wondering if anybody knew how to do something like this: VB: --- ' Create/write a Microsoft Outlook item custom field objMessage.Fields.Add "", , "", CdoPropSetID5 ' For Example: objMessage.Fields.Add "PersonRole", vbString, "HR Lead", "2903020000000000C000000000000046" I've tried a few different ways, but nothing seems to work (I'm new to OOP...). I want to do something like: Ruby: ----- contact = contact_folder.Messages.Add contact.Fields.FullName = "Test" ...or something Any suggestions? All help is appreciated! Thanks! - Jeff Miller -- Posted via http://www.ruby-forum.com/.