PDA

View Full Version : hiding workbooks



ProteanBeing
12-27-2007, 12:08 PM
I would like to open a dialog box from a workbook without seeing the sheets in the workbook. Is this possible?

lucas
12-27-2007, 12:11 PM
There have been many threads where someone wants to use excel to be an application that is not really excel......search the forum. Why not use VB or .Net?

Bob Phillips
12-27-2007, 12:32 PM
Maybe something like



Application.Visible = False
MsgBox "Yes or no", vbYesNo
Application.Visible = True

ProteanBeing
12-27-2007, 02:15 PM
Thanks for the easy button!!! :doh: