Re: Clearning Bookmark data
- From: "Doug Robbins - Word MVP" <dkr@xxxxxxxxxxxxxxxxxx>
- Date: Thu, 19 Nov 2009 05:17:19 +1000
See the article “Combining FormFields and Mail Merge” on the following page of fellow MVP Graham Mayor’s website:
http://www.gmayor.com/Form_Fields_and_Mail_Merge.htm
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"BigAlK" <BigAlK@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message news:39505358-9538-4D97-AD93-80F460950D79@xxxxxxxxxxxxxxxx
Forgive my inexperience....
Is there a way for me to programmatically "File > New" so as to create the
form repeatedly? I am reading a file and applying the data to the form, one
line at a time. I should be able to program so as to know where the bottom of
the page is, and thus submit each page to be printed.
It really would help if I could blank out existing data following a bookmark
because I will have to create multiple pages of detail info, with the main
data staying the same. To be able to keep that data intact, and just refill
the detail info would be great.
I appreciate your help, Jay. Anything else you can do to help me on this
would be greatly appreciated.
Al
"Jay Freedman" wrote:
The best answer is to create the form as a *template* from which you
create new documents with the File > New command. Every new document
opens with the bookmarks already cleared (because that's how they're
stored in the template) and you don't have to worry about how much
gets inserted.
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
On Tue, 17 Nov 2009 14:42:40 -0800, Al Kremer wrote:
>What if I don't know how much data is following the bookmark? I'd like >to be able to clear whatever went in there, so that the doc is ready for >the next set of data.
>
>Thanks!
>
>Al
>
>
>
>Helmut Weber wrote:
>
>Re: Clear text after a bookmark
>24-Mar-07
>
>Hi Colin,
>
>so many ways,
>
>delete 15 characters after a bookmark:
>
>Sub Test400()
>Dim lng As Long
>Dim rng As Range
>Set rng = ActiveDocument.Bookmarks("fax_no").Range
>With rng
> For lng = 1 To 15
> .Characters.Last.Next = ""
> Next
>End With
>End Sub
>
>
>
>Maybe, but not me.
>The only thing I can say is that I prefer thick books.
>
>Visit: http://word.mvps.org/index.html
>
>HTH
>
>-- >Greetings from Bavaria, Germany
>
>Helmut Weber, MVP WordVBA
>
>Win XP, Office 2003
>"red.sys" & Chr$(64) & "t-online.de"
>
>Previous Posts In This Thread:
>
>On Saturday, March 24, 2007 3:26 AM
>Colin Telfer wrote:
>
>Clear text after a bookmark
>can anybody help me with some code for MS word 2003. I want to clear >the
>text / characters/ numbers after a bookmark leaving the bookmark intact.
>
> .Bookmarks("Fax_no").Select
> Selection.MoveRight Unit:=wdCharacter, Count:=15, > Extend:=wdExtend
> Selection.Delete Unit:=wdCharacter, Count:=1
>
>this is the code i have sussed out so far, the only thing is it deletes >the
>line and the bookmark which i don't wish to do.
>
>Can anybody help?
>
>Also can anybody recommend a book for word VBA as i find the MS online >help
>manual useless?
>
>Cheers
>Colin
>
>On Saturday, March 24, 2007 4:00 AM
>Doug Robbins - Word MVP wrote:
>
>See my response to your post in the customization newsgroup.
>See my response to your post in the customization newsgroup. Please do >not
>post the same question separately to multiple newsgroups.
>
>
>
>-- >Hope this helps.
>
>Please reply to the newsgroup unless you wish to avail yourself of my
>services on a paid consulting basis.
>
>Doug Robbins - Word MVP
>
>"Colin Telfer" <colin.telfer@xxxxxxxxxxxx> wrote in message
>news:bh5Nh.9071$Kk5.6098@xxxxxxxxxxxxxxxxxxxxxxx
>
>On Saturday, March 24, 2007 4:06 AM
>Helmut Weber wrote:
>
>Re: Clear text after a bookmark
>Hi Colin,
>
>so many ways,
>
>delete 15 characters after a bookmark:
>
>Sub Test400()
>Dim lng As Long
>Dim rng As Range
>Set rng = ActiveDocument.Bookmarks("fax_no").Range
>With rng
> For lng = 1 To 15
> .Characters.Last.Next = ""
> Next
>End With
>End Sub
>
>
>
>Maybe, but not me.
>The only thing I can say is that I prefer thick books.
>
>Visit: http://word.mvps.org/index.html
>
>HTH
.
- References:
- Clearning Bookmark data
- From: Al Kremer
- Re: Clearning Bookmark data
- From: Jay Freedman
- Re: Clearning Bookmark data
- From: BigAlK
- Clearning Bookmark data
- Prev by Date: Re: WORD 2007 Template with VBA
- Next by Date: Page Numbering in Word 2007
- Previous by thread: Re: Clearning Bookmark data
- Next by thread: When I start Word
- Index(es):
Relevant Pages
|