Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 02-04-2024, 07:52 AM
ctviggen ctviggen is offline Add text to beginning of new document opened from original Word document, with styles Windows 10 Add text to beginning of new document opened from original Word document, with styles Office 2016
Advanced Beginner
Add text to beginning of new document opened from original Word document, with styles
 
Join Date: Feb 2021
Posts: 54
ctviggen is on a distinguished road
Default

Thanks, but none of that was helpful. You do realize I searched for the answer for this, correct? Not only did I do that, but I asked Chat GPT multiple questions about how to do this, and it couldn't do it. It's been quite helpful on other questions, but it could not answer this one.





For the paragraphs.add method, I'm not using a selection object, so that doesn't work.


The Range.InsertParagraph method doesn't tell my how to do this in an open document, again because it's using selection, which I'm not. Nothing is selected.



The range.style link is completely worthless.



None of those links were helpful for my particular question.
Reply With Quote
  #2  
Old 02-04-2024, 08:21 AM
Italophile Italophile is offline Add text to beginning of new document opened from original Word document, with styles Windows 11 Add text to beginning of new document opened from original Word document, with styles Office 2021
Expert
 
Join Date: Mar 2022
Posts: 539
Italophile is just really niceItalophile is just really niceItalophile is just really niceItalophile is just really nice
Default

Quote:
Originally Posted by ctviggen View Post
For the paragraphs. Add method, I'm not using a selection object, so that doesn't work.
The third example in the documentation:
"This example adds a paragraph mark before the second paragraph in the active document."

Code:
ActiveDocument.Paragraphs.Add _ 
 Range:=ActiveDocument.Paragraphs(2).Range
Quote:
Originally Posted by ctviggen View Post
The Range.InsertParagraph method doesn't tell my how to do this in an open document, again because it's using selection, which I'm not. Nothing is selected.
None of the example code in the documentation for InsertParagraph, InsertParagraphAfter or InsertParagraphBefore uses Selection. For example:
Code:
Set myRange = ActiveDocument.Range(0, 0) 
With myRange 
 .InsertParagraph 
 .InsertBefore "Dear Sirs," 
End With
Code:
Set myRange = ActiveDocument.Range(0, 0) 
With myRange 
 .InsertBefore "Title" 
 .ParagraphFormat.Alignment = wdAlignParagraphCenter 
 .InsertParagraphAfter 
End With
Quote:
Originally Posted by ctviggen View Post
The range. Style link is completely worthless.
"To set this property, specify the local name of the style, an integer, a WdBuiltinStyle constant, or an object that represents the style." i.e.
Code:
nRng.Style = "styleName"
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Add text to beginning of new document opened from original Word document, with styles Get path of newly opened word document MANOHAR Word 2 04-12-2017 06:07 AM
Hyperlinks that Do Not Exist in the Original Word Document Appearing in the PDF Document diarrheaofthewprocessor Word 11 01-24-2017 01:52 PM
Single step Word Styles from Source Document through entire Destination document? xbliss Word 6 08-27-2016 09:36 PM
Word 2013 - When deleting section breaks, cursor jumps to beginning of document ranholmom66 Word 3 07-01-2016 06:01 AM
Add text to beginning of new document opened from original Word document, with styles Lost word document now opened in unknown Danwordman Word 2 07-07-2015 05:03 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 08:21 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft