Has anybody seen any type of on-line documentation that covers standard Excel COM object references within PeopleCode?
I'm looking for something that provides me with a mapping on how to reference code created using VBA in to PeopleCode.
My current challenge is how to apply a theme to an Excel Spreadsheet using the following VBA.
Any tips would be greatly apprecaited.
ActiveSheet.ListObjects.Add(xlSrcRange, Range("$A$1:$H$30"), , xlYes).Name = "Table2"
Range("Table2[#All]").Select
ActiveSheet.ListObjects("Table2").TableStyle = "TableStyleMedium9"
Thanks…
Tom