After creating a workbook, when opened from the GUI, I am noticimg that the
window
is not properly arranged. In particular, I cannot see the tabs at the
bottom.
So I have do the arranging via the GUI, rather annoying.
So I added the following just before save of the workbook.
.Windows.Arrange ArrangeStyle:=xlHorizontal
Thee setting does not hold when opening the workbook.
Anything else I need to set?
Howard Kaikow - 21 May 2008 07:51 GMT
> After creating a workbook, when opened from the GUI, I am noticimg that the
> window
[quoted text clipped - 8 lines]
> Thee setting does not hold when opening the workbook.
> Anything else I need to set?
Hey Howard, try making the instance of Excel temporarily visible.
Howard Kaikow - 21 May 2008 07:59 GMT
> Hey Howard, try making the instance of Excel temporarily visible.
Thanx Howard, that works!
With ExcelWbk
appExcel.Visible = vbTrue
.Windows.Arrange
.Save
appExcel.Visible = vbFalse
.Saved = vbTrue
.Close
End With