TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
the following macro is handy for printed manuals. It will force a page break
before the paragraph the cursor is in. If there is already a page break, it
will toggle the property back so that no page break is made. I recommend
assigning it a keyboard shortcut or toolbar button.
Sub PageBreakToggle()
'
' PageBreakToggle Macro
' Macro recorded 19-Jun-01 by Bevan McCabe
' Toggle added 19-Sep-01
With Selection.ParagraphFormat
If .PageBreakBefore = True Then
.PageBreakBefore = False
Else
.PageBreakBefore = True
End If
End With
End Sub
I'm providing it "as is", use at your own risk, so don't ask me how to use
it. But, if anyone has any suggestions or modifications, feel free to email
me on the address below.
A landmark hotel, one of America's most beautiful cities, and
three and a half days of immersion in the state of the art:
IPCC 01, Oct. 24-27 in Santa Fe. http://ieeepcs.org/2001/
+++ Miramo -- Database/XML publishing automation. See us at +++
+++ Seybold SFO, Sept. 25-27, in the Adobe Partners Pavilion +++
+++ More info: http://www.axialinfo.comhttp://www.miramo.com +++
---
You are currently subscribed to techwr-l as: archive -at- raycomm -dot- com
To unsubscribe send a blank email to leave-techwr-l-obscured -at- lists -dot- raycomm -dot- com
Send administrative questions to ejray -at- raycomm -dot- com -dot- Visit http://www.raycomm.com/techwhirl/ for more resources and info.