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 biv343 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: *

  • Users: HDVD
  • Order by date
  1. HDVD

    Preserve data in userform

    VBAjedi, Thanks for the respond. It is a Word template. This was leading to my second question which is how can I use the same data on a second/different Word document?
  2. HDVD

    Preserve data in userform

    Hi, I have a userform and would like to be able to save the data/value entered so that when the form is re-openned from the same document, the data doesn't have to be re-entered. Thanks in advance.
  3. HDVD

    How to have fields the will overwrite old information???

    Use the following sub. It works for me. Sub UpdateBookmark(BookmarkToUpdate As String, TextToUse As String) Dim BMRange As Range Set BMRange = ActiveDocument.Bookmarks(BookmarkToUpdate).Range BMRange.Text = TextToUse ActiveDocument.Bookmarks.Add BookmarkToUpdate, BMRange End Sub...

Part and Inventory Search

Back
Top