Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I don't have Visual Studio, Excel 2007 or VB, however, here is my guess as to how it should read... LCV = CreateObject("Excel.Application") Dim oBook As LCV.Workbook Dim oBooks As LCV.Workbooks Dim oSheets As LCV.Sheets Dim oSheet1 As LCV.Worksheet oBooks = LCV.Workbooks oBook = oBooks.Add() oSheets = oBook.Sheets oSheet1 = oSheets(1) oSheet1.Name = "Portfolio" -- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware (Excel Add-ins / Excel Programming) "NewToVB" wrote in message I'm having trouble changing the names of my worksheets in my new workbook, can someone help? Here is the code that I have. I'm using Visual Studio 2005, Excel 2007 and VB, here is some of the code I have. Thanks! Dim LCV = New Excel._ExcelApplication LCV = CreateObject("Excel.Application") Dim oBook As Excel.Workbook Dim oBooks As Excel.Workbooks Dim oSheets As Excel.Sheets Dim oSheet1 As Excel.Worksheet oBooks = LCV.Workbooks oBook = oBooks.Add() oSheets = oBook.Worksheets <----I get an error saying COM unhandled oSheet1 = oSheets.Add oSheet1.Name = "Portfolio" I know it already has 3 sheets when you create a new workbook, but how do you change those names? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using Sheet names & Workbook names in VBA coding | Excel Programming | |||
Changing Sheet Names | Excel Programming | |||
Changing VB Component Names to match Worksheet names using VBE | Excel Programming | |||
return all worksheet tab names and chart sheet tab names in report - an example | Excel Programming | |||
changing sheet names | Excel Programming |