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 SkipVought 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: MrSR
  • Order by date
  1. MrSR

    tooltip for word 2003

    CommandBars("toolbarname").Controls("macroname"). _ TooltipText = "tooltip mouseover"
  2. MrSR

    tooltip for word 2003

    has anyone tried to change the tooltip for word 2003 custom buttons on a toolbar. i have done it in early versions but its not working for 2003. i run the code from the immediate window to change the button. it runs but doesnt change the mouse over for the button. any ideas?
  3. MrSR

    Previewing Reports through Visual Basic

    thanks i am going to give it a try
  4. MrSR

    Previewing Reports through Visual Basic

    Is it possible to preview a report through automation without being able to get into the database. i just want the previewed report to show up without the user being able to get into the database. i know how to automate it i just cant find that part.
  5. MrSR

    office clipboard

    programmitically i would like to shut off an option on the clipboard. Go to Edit -> Clipboard -> Options. I want to turn off the second option down (make sure it is unchecked) So how do i do this using vba. thanks a bunch, mrsr
  6. MrSR

    Windows activate

    found out there is an option in the office clipboard. if you click it to off there is no automation error
  7. MrSR

    Windows activate

    here is the dilemma i am having. i created a template that runs beautifully on 98% of the users computers. there is about 250 users using this template and it gets downloaded to their hard drives every morning when they log in. Problem some users get the object disconnected from the client...
  8. MrSR

    WORD Automation (wdGoToPage)

    quit word at the end, specify whether or not you want to save changes. then set it to nothing. dont know if it will work or not, but maybe its hanging and causing conflict with 2 objects open. wd.Quit wdDoNotSaveChanges Set wdTheApp = Nothing
  9. MrSR

    Word Document Properties as it appears from the file menu

    yes i saw this somewhere else and it works nice. thank you for your reply. i really appreciate it. one question with that code though, how do you change the default tab it starts on?
  10. MrSR

    Word Document Properties as it appears from the file menu

    is there a way to display the document properties dialog box in vba so it shows up just like it would appear if you were selecting it from the file menu. write now only part of it shows up using the dialogs(wddialogfilesummaryinfo).show method. Any suggestions?????????????
  11. MrSR

    What is the equivalent in word to quickfinder

    i need something that is almost the same as the quickfinder indexer in word perfect. the one that microsoft word provides is not exactly what i am looking for. i need to use the same features as the one in word perfect but i need it for word. thanks alot
  12. MrSR

    Paragraph Mark

    i got it. If Asc(selection.text) = 13 then string = "" else string = selection.text end if
  13. MrSR

    Paragraph Mark

    i tried Len(trim(selection.text)) = 0 but that does not work.
  14. MrSR

    Paragraph Mark

    I am searching for text in a document and saving it to a string variable. I do a find and replace for a key word, once found i move one character to the right to deselect the selection, then i move down one paragraph and highlight. works beautifully, however if there is no text there it selects...
  15. MrSR

    Next Page Section Break

    thank you very much. i modified it a little bit and that works just fine. i really appreciate your time.
  16. MrSR

    Deleting Next Page Section Break

    sorry, i realized too late that i posted in wrong the thread. i wont do it again.
  17. MrSR

    Deleting Next Page Section Break

    I have a macro that runs to clean up converted word perfect documents. I go in and replace all section breaks (^b) with nothing. This works fine. However in one particular document right before a table there is a next page section break that is not being deleted. I have tried several things and...
  18. MrSR

    Next Page Section Break

    I have a macro that runs to clean up converted word perfect documents. I go in and replace all section breaks (^b) with nothing. This works fine. However in one particular document right before a table there is a next page section break that is not being deleted. I have tried several things and...
  19. MrSR

    Carry over Word perfect Descriptive in Word Conversion

    No. In WordPerfect there is a Document Summary that has a descriptive name in it. When converted to word it goes to the document properties(title). however i want the whole thing to come over, everything after the period is cutting off. so DES only comes over to the word side not des. 12...
  20. MrSR

    Carry over Word perfect Descriptive in Word Conversion

    when converting word perfect document to word document, the descriptive name does not carry over if it is "Des. 12". the only thing that carries over is the des. Any suggestions on how to fix this when converting the word perfect documents to word so that the whole descriptive name carries over...

Part and Inventory Search

Back
Top