View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
FSt1 FSt1 is offline
external usenet poster
 
Posts: 3,942
Default Freezing Header Row

hi
Activewindow.Freezepanes = True
objxloutsheet.Freezepanes = True should work too.

Regards
FSt1

"mdup" wrote:

Hello,

I am trying to freeze the first row of an Excel Worksheet using VB. I
have tried many different codes and none of them work, I have been getting
Null Exception Errors. Here is a piece of code that I am trying to use to
freeze the first row.

objxloutsheet = objxloutwbook.ActiveSheet
Dim FP As Excel.Window
objxloutsheet.Range("A1, Z1").Select()
FP.FreezePanes() = True

I am also not sure on how to select the first row in the FP.FreezePanes() =
True line.

Any help would be appreciated, Thanks in advance.