O
olimu
I wrote some code to extract AutoText contents from the Normal.dot but
the value property of the AutoTextEntries only returns the first 255
characters.
Public Sub AutoTextEntries_Export()
'
' Code for exporting AutoText in Normal.dot
' written 10.11.2006 by Olivier Muff
'
Dim i As AutoTextEntry
Open "MyAutoTextEntries.txt" For Output Shared As #1
For Each i In NormalTemplate.AutoTextEntries
Write #1, i.Name & "¦" & i.Value
Next i
Close #1
End Sub
Any suggestions on how to get around this limit?
mhillig1 asked a similar question on Feb 16 2005 which Suzanne S.
Barnhill said she responded to "Please see my reply to your duplicate
question earlier or elsewhere. " but I cannot find her post. Does
anyone have it?
Thank you,
Olivier Muff
Zürich
the value property of the AutoTextEntries only returns the first 255
characters.
Public Sub AutoTextEntries_Export()
'
' Code for exporting AutoText in Normal.dot
' written 10.11.2006 by Olivier Muff
'
Dim i As AutoTextEntry
Open "MyAutoTextEntries.txt" For Output Shared As #1
For Each i In NormalTemplate.AutoTextEntries
Write #1, i.Name & "¦" & i.Value
Next i
Close #1
End Sub
Any suggestions on how to get around this limit?
mhillig1 asked a similar question on Feb 16 2005 which Suzanne S.
Barnhill said she responded to "Please see my reply to your duplicate
question earlier or elsewhere. " but I cannot find her post. Does
anyone have it?
Thank you,
Olivier Muff
Zürich