Using FreezePanes property in VB 6.0

  • Thread starter Thread starter Francis
  • Start date Start date
F

Francis

Hi all,

Can anyone tell me how to use FreezePanes in VB 6.0?
I have tried the following code, but it doesn't work.

=======================
With vobjWrkSht
.range("C9:D12").Activate
.FreezePanes = True
End With
=======================

Best regards,
Francis
 
With vobjWrkSht
.Activate
.range("C9:D12").Activate
End With
ActiveWindow.FreezePanes = True
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top