Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Word Bookmarks
Message
From
07/11/2000 12:31:23
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
 
To
06/11/2000 18:47:24
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Miscellaneous
Thread ID:
00438630
Message ID:
00438863
Views:
10
>If I have a listbox of Word templates and the user selects one. There may be anywhere from 1 to 30 bookmarks. I know that I can use the Bookmarks() collection to step through each bookmark in the document. What is the best algrothim to see if a match is there with one of my field names?
>
>loDoc = oWord.Documents.open(lcFullPathDocument)
>lnBookmarkCount = loDoc.Bookmarks.count
>
>** Use a for loop to flip through them all.
>for lnI = 1 to lnBookmarkCount
> lcBookMarkname = oDoc.bookmarks[lnI].name
> lcNewValue = FindName(lcBookMarkname)
> oDoc.Bookmarks[lnI].range.text = lcNewValue
>endfor
>
>What would be a good method to find the names?
>
>Thanks
with oWord.ActiveDocument
if .Bookmarks.Exists(cBookmarkName)
   .Bookmarks(cBookmarkName).Range.Text = 'blahblah'
endif
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform