Removing HPageBreaks frrom Ranges

S

Subs

Hi can someone help me here

I'm setting HPageBreaks in predined places
however when I look at the PrintPreview
I can see other breaklines which are broken lines
How do I get rid of these.

Here's the code I'm using

..ResetAllPageBreaks
.PageSetup.PrintArea = ""
.PageSetup.PrintTitleRows = ""
.PageSetup.PrintTitleColumns = ""
.PageSetup.PrintArea = ActiveSheet.Range(Cells(6, startCol),
Cells(lastRow, stopCol)).Address
.PageSetup.PrintTitleRows = "$1:$6"
.PageSetup.PrintTitleColumns = colTiCh



.HPageBreaks.Add Before:=.Range("A44")
.HPageBreaks.Add Before:=.Range("A62")

VbreakCount = .VPageBreaks.Count
HbreakCount = .HPageBreaks.Count

For i = 1 To HbreakCount
For j = 1 To VbreakCount
Set numHBreaks = .HPageBreaks(i).Location
Set numVBreaks = .VPageBreaks(j).Location
Next j
Next i


thanks for any help

Subs
 
T

Tom Ogilvy

Those are probably automatic pagebreaks. Those appear when the printer
settings/page setup dictate that a pagebreak must appear at that location
(if you print, the printer will break at that location). .

Unless you change your settings, you can not get rid of them.
 

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

Top