ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Saving a sheet as unhidden in VB (https://www.excelbanter.com/excel-programming/277989-saving-sheet-unhidden-vbulletin.html)

Barry Sommerfeld

Saving a sheet as unhidden in VB
 
I am writing an application in Visual Basic 6.0 that creates an Excel sheet
object, writes to it, and then saves the Excel file. When I load the file
in Excel, the workbook is hidden. I have to select Window-Unhide to unhide
it. Does anyone know how I can save the sheet as "unhidden?"

Thanks,
Barry Sommerfeld




eli silverman

Saving a sheet as unhidden in VB
 
There is a microsoft Knowledgebase article describing
this. I know because I saw it today but can't find it
anymore.
The basic gist of the article was that this occurs when
you use the getobject command and save it using the saveas
command. to correct this you must make the object visible.

if you want to use the getobject and saveas commands
consider the following

dim oexcel as object
dim osheet as object
set oexcel = getobject(filename.xls)
set osheet = oexcel.worksheets(1)
oexcel.parent.windows(oexcel.name).visible = true
oexcel.saveas newfilename.xls
oexcel.close

your alternative is to create a new workbook
dim oexcel as object
dim obook as object
dim osheet as object
set oexcel = createobject("Excel.application")
set obook = oexcel.workbooks.add
set osheet = obook.worksheets(1)
obook.saveas newfilename.xls
oexcel.quit


-----Original Message-----
I am writing an application in Visual Basic 6.0 that

creates an Excel sheet
object, writes to it, and then saves the Excel file.

When I load the file
in Excel, the workbook is hidden. I have to select

Window-Unhide to unhide
it. Does anyone know how I can save the sheet

as "unhidden?"

Thanks,
Barry Sommerfeld



.


Johann de Jager

Saving a sheet as unhidden in VB
 
Barry I suggest you write a macro (in excel and the
workbook) that when you open the workbook it
outomatically unhides the workbook.
something like

Sheets("Sheet1").Visible = True
with the open workbook event

Johann

-----Original Message-----
I am writing an application in Visual Basic 6.0 that

creates an Excel sheet
object, writes to it, and then saves the Excel file.

When I load the file
in Excel, the workbook is hidden. I have to select

Window-Unhide to unhide
it. Does anyone know how I can save the sheet

as "unhidden?"

Thanks,
Barry Sommerfeld



.


Barry Sommerfeld

Saving a sheet as unhidden in VB
 
That worked. Thanks.

Barry Sommerfeld


"eli silverman" wrote in message
...
There is a microsoft Knowledgebase article describing
this. I know because I saw it today but can't find it
anymore.
The basic gist of the article was that this occurs when
you use the getobject command and save it using the saveas
command. to correct this you must make the object visible.

if you want to use the getobject and saveas commands
consider the following

dim oexcel as object
dim osheet as object
set oexcel = getobject(filename.xls)
set osheet = oexcel.worksheets(1)
oexcel.parent.windows(oexcel.name).visible = true
oexcel.saveas newfilename.xls
oexcel.close

your alternative is to create a new workbook
dim oexcel as object
dim obook as object
dim osheet as object
set oexcel = createobject("Excel.application")
set obook = oexcel.workbooks.add
set osheet = obook.worksheets(1)
obook.saveas newfilename.xls
oexcel.quit


-----Original Message-----
I am writing an application in Visual Basic 6.0 that

creates an Excel sheet
object, writes to it, and then saves the Excel file.

When I load the file
in Excel, the workbook is hidden. I have to select

Window-Unhide to unhide
it. Does anyone know how I can save the sheet

as "unhidden?"

Thanks,
Barry Sommerfeld



.





All times are GMT +1. The time now is 11:25 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com