Does anyone know how to freeze panes in Excel from Access.
I can bold, autofit both rows and columns, I can even select the cell I want the FreezePanes to work from.
But every combination I can think of to set the property to true does not work.
I have
Which does not work at all and I tried
Which acts like it works ONCE but when you close Excel it is actually still running (Task Manager) so you cannot open (see it visible) it a second time.
I can bold, autofit both rows and columns, I can even select the cell I want the FreezePanes to work from.
But every combination I can think of to set the property to true does not work.
I have
Code:
Dim Xl As Excel.Application
Dim XlBook As Excel.Workbook
Dim XlSheet As Excel.Worksheet
XlSheet.ActiveWindow.FreezePanes
Code:
Dim Xl As Excel.Application
Dim XlBook As Excel.Workbook
Dim XlSheet As Excel.Worksheet
ActiveWindow.FreezePanes
Which acts like it works ONCE but when you close Excel it is actually still running (Task Manager) so you cannot open (see it visible) it a second time.