Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Tick(OMR) marks in Word
Message
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Miscellaneous
Thread ID:
00400770
Message ID:
00400895
Views:
11
>Has anyone put tick marks in a word document programmatically? They are used in intelligent inserters to read page count, end of set, etc.
>
>TIA,
>
>E.R. Gilmore

Something like this?

loWord = CREATEOBJECT( "Word.Application")
loDocument = loWord.Documents.Add()
loRange = loDocument.Range()
loRange.Font.Name = "WingDings"
loRange.Text = CHR( 120) &&checkbox
loRange.Text = loRange.Text + CHR( 252) && tickmark


Hope this is what you're after,

Mace
Previous
Reply
Map
View

Click here to load this message in the networking platform