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 bkrike 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. noHandlebars

    Scroll During Input Box

    Hi, right now i have a macro that asks the user for some input using an input box. I was wondering if it is possible to allow the user to scroll through the document while the input box is up. Is this at all possible?
  2. noHandlebars

    Replace Macro in a Footer

    Hi I'm trying to create a macro that will ask the user for input, then take that input and put it into the existing footer of a document, replacing what was previously in the footer. This is what I have so far: Sub FasterFindAndReplaceAllStoriesHopefully() Dim myStoryRange As Range Dim...
  3. noHandlebars

    Special Formatting Characters

    I know this is a pretty simple question, but what are the special characters to force bold, underline, and italalics.
  4. noHandlebars

    Deleting WordArt in a Report

    In this report, there is word art located in the headers of many pages but not every page of the report. It needs to be deleted. Is there a simple way to delete all the word art from the headers? Or do a test on each page to determine if that page has word art on it, then delete it somehow?
  5. noHandlebars

    Formatting Inserted Text

    I am running a macro that finds a section of text, deletes that section, then inserts new text. The new text needs to be formatted in a special way like horizontally centered and bolded and underlined for specific words. Is there anyway to code the formatting in? Here's what I have so far...
  6. noHandlebars

    Find and Replace in Footers

    In Word, I'm trying to do a replace all in a document for information that is in the footer. However, the replace all does not find the words I'm looking for or it only finds the first occurence. Is there a special way to perform a replace all when footers are involved?
  7. noHandlebars

    Replace All in Footer

    I'm trying to run a replace all in a footer and it's not working really at all. When i run it from the document it doesn't replace anything. I then tried running it after clicking inside the footer and the replace all only replaced the first occurence of the word. Any suggestions?
  8. noHandlebars

    Page Number Information

    In microsoft word, I'm generating a table of contents, and i was wondering if it was possible to do a find for a certain title in the document and get the information for what page of the document it is on. Then have that information put onto the table of contents page. Any suggestions?
  9. noHandlebars

    Keystroke Instead of Time-Delay

    The code below is currently on a time delay that will pause for 5 seconds and then go to the next designated macro: Sub findA12() Selection.Find.ClearFormatting With Selection.Find .Text = "A12" .Replacement.Text = "" .Forward = True .Wrap =...
  10. noHandlebars

    Object Required Error

    I'm getting an *Object Required* error for the following code: Dim cOne, cTwo, cThree, cFour, cFiveA, cFiveB, cSix, cSeven, cEight, cNine As Boolean Set cOne = ActiveDocument.FormFields("ccheck1").CheckBox Set cTwo = ActiveDocument.FormFields("ccheck2").CheckBox Set cThree =...
  11. noHandlebars

    Selecting, Deleting, and Inserting Text

    How can you select a specific section of text, delete that section, and then insert a new section in its place using a macro.
  12. noHandlebars

    Creating a Pause for User Action during a Macro

    Is there a way to "pause" a macro to allow the user to delete rows from a table then allow the macro to continue. There need to be multiple pauses during the running of the macro. Any help is appreciated.

Part and Inventory Search

Back
Top