the other name is the 'CodeName' of the VBProject
in Tools/References, browse to:
Visual Basic for Applications Extensibility 5.3
checkmark it. press ok.
now open the object browser (F2)
dropdown to VBIDE and you can see all the props that you can program
...
in Excel:
in macro security(2nd tab) you must check
'Allow access to
VB object model'
now you're up and running and you can start learning how to do stuff.
keepITcool
< email : keepitcool chello nl (with @ and .)
< homepage:
http://members.chello.nl/keepitcool
"?B?WnVsdWRvZ00=?=" wrote:
If you select a sheet and look at the Properties, you will find two
properties that name the sheet:
(Name)
Name
When a user changes the sheet name by typing into the sheet Tab, they
are changing the Name property, but not the (Name) property.
Example: When you open a new workbook, Sheet1 will have properties:
(Name) = "Sheet1"
Name ="Sheet1"
When the user renames that sheet to "Revenues" the properties become:
(Name) = "Sheet1"
Name = "Revenues"
You can rename the (Name) property directly in the Properties table
for the sheet, however, I would like to read (and even write) that
property in VBA, but the only methods I can find are for the Name
property. Anybody know how to do this?
Thanks, Mark