Set Worksheet Names in a Module

G

Guest

Hi
Example:

set wksCurrent = worksheets("Testing")
set wksNew = worksheets("Antoher")

as the same names can be used over each sheet instead of having to enter
code in as Sheets("Testing").cmdTest.visible = true
I was hoping to cut it down to be wkscurrent.cmdtest.visible = true

Any help aprreciated.
Thanks
Noemi
 
D

Dave Peterson

You could use:

wkscurrent.OLEObjects("CommandButton1").Visible = False

Or you could use the CodeName (look at the properties of the worksheet when
you're in the VBE)

Sheet1.CommandButton1.visible = true

Inside the VBE
hit ctrl-r (to see the project explorer
Click on the worksheet
hit F4 to see the properties of that sheet
the property called (Name) -- with the parentheses
is the codename.

You can type over that name to get something more meaningful, too.

Maybe Testing???

then
Testing.commandbutton1.visible = true
would work
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top