Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. umchemist

    Convert columnhistory expression to store data in table

    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...
  2. umchemist

    Need to Extract Footnoes in Word to a New Word File

    You guys are superstars!!! Thanks so much, worked perfect!
  3. umchemist

    Need to Extract Footnoes in Word to a New Word File

    But not I get a syntax error at: sEnd = sEnd & lCount & vbTab & Anyone have any ideas?
  4. umchemist

    Need to Extract Footnoes in Word to a New Word File

    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 &...
  5. umchemist

    Need to Extract Footnoes in Word to a New Word File

    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 &...

Part and Inventory Search

Back
Top