LOTUSSCRIPT/COM/OLE CLASSES
The following are the general differences between accessing Domino Objects through either LotusScript or COM:
Set col = view.Columns(2)
You must first assign the Columns property to a variable:
cols = view.Columns Set col = cols(2)