not able to see any sheets!

S

sam

I am not able to see any sheets when I open my workbook that has my
userform.. The button to launch the userform is in sheet1 but i cannot see
any sheets.. But the code is there.. once I click Developer and then visual
basic, I am able to see the code and form and everytime, but not the sheets..
How can I make the sheet1 to come again? I have the button on that sheet that
launches the form!

Thanks in advance
 
S

Sam Wilson

In the VB editor, in properties, you can change the status of the sheet to
visible.

Do that then save it.

Sam
 
R

Rick Rothstein

It sounds like you may have the Window hidden. Try this... click
Window/Unhide from Excel's menu bar and see if that works.
 
S

sam

Hey Sam, That status is set to " -1 - xlSheetVisible" But when i reopened the
sheet I still couldnt see any sheets there
 
S

Sam Wilson

Hi,

This is lifted from Patrick's response to your other post...

Try running this:

sub temp()

Windows(ThisWorkbook.Name).Visible = True

end sub

from a module in your invisible workbook.

Sam
 

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