Hi everyone,
Can anyone help me with some VBA code? In the database right now, the columnhistory expression is used to save comments, and display them in a box as they are added from time to time. What code would use the "Save Comment" button to store the saved comments entered into a text...
Its the only macro I have in the word document, stored in Normal/Microsoft Word Objects/ThisDocumen
Sub PullMe()
Dim lCount As Long
Dim sEnd As String
Dim oDoc As Document
sEnd = "Endnotes" & vbCrLf
For lCount = 1 To ActiveDocument.Endnotes.Count
sEnd = sEnd & lCount & vbTab &...
Hi Everyone,
I have the following code:
<code>
Dim lCount As Long
Dim sEnd As String
Dim oDoc As Document
sEnd = "Endnotes" & vbCrLf
For lCount = 1 To ActiveDocument.Endnotes.Count
sEnd = sEnd & lCount & vbTab &
ActiveDocument.Endnotes(lCount).Range.Text & vbCrLf
Next lCount
sEnd = sEnd &...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.