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 TouchToneTommy 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: 565u
  • Order by date
  1. 565u

    watermark change takes minutes (Word XP)

    Thank you both very much for your kind replies! I started with switching the printer from CutePDF to "Microsoft XPS Document Writer" and the code ran quickly. Going back to CutePDF did not bring back the long waiting time though. I will explore more and will note here if I solve this. Best...
  2. 565u

    watermark change takes minutes (Word XP)

    Hi, I am trying to change watermark (for all pages), but the change takes several minutes. During this time Word XP (Windows 10) is non-responsive. I first tried the code that macro recorder records and then a code from another forum. The result is the same. Both codes work (in the end) but they...
  3. 565u

    conditionally manipulate text in each paragraph

    @strongm (MIS) That was very pretty :-) Thank you! It took me a while to figure out what you are doing there. If anybody needs it, here is a very nice document about using wildcards in search: https://wordmvp.com/FAQs/General/UsingWildcards.htm Best regards :) P
  4. 565u

    conditionally manipulate text in each paragraph

    @Andrzejek /By this line of code: /If Mid(xString, (Len(xString)) - 1, 1) = ")" Then /did you mean this: /If Right(xString, 1) = ")" Then ponder :-D and you haven't seen the rest of the code :-D seriously, actually not. the rightmost character was the paragraph mark. also i was moving from the...
  5. 565u

    conditionally manipulate text in each paragraph

    Just in case it is interesting to anyone, this is the solution I went with. The code is a mess :-D but it works and that's all I need right now. I needed to turn a txt into a tab separated text that can be imported into excel to create a spreadsheet. A lot of weird text manipulation was needed...
  6. 565u

    conditionally manipulate text in each paragraph

    @SkipVought @macropod Thank you very much for your kind replies! They got me started and now I am sucessfully progressing in solving this. I will post my working solution once it's done. @Andrzejek Thank you for your kind reply! re: I read the OP a little different. Just because this post is...
  7. 565u

    conditionally manipulate text in each paragraph

    Hi and thanks for reading my post! I have a plain text file. I need to go thru each paragraph and check it for specific character or several characters and then manipulate them or text near them. I just can't figure out the methodology to do that :( Everything I try fails me at some point. My...
  8. 565u

    Clipboard (Office XP)

    and a little tip: you can use button names instead of their numbers e.g. CommandBars("toolbarname").Controls("thebigbutton").Picture = CommandBars("toolbarname").Controls("thebiggerbutton").Picture
  9. 565u

    Clipboard (Office XP)

    i take it back, just solved it for those who need it: CommandBars("toolbarname").Controls(1).Picture = CommandBars("toolbarname").Controls(2).Picture :) Pavel
  10. 565u

    Clipboard (Office XP)

    @combo: could you be so kind and give me more details, please?
  11. 565u

    Clipboard (Office XP)

    @SkipVought Thank you very much again!! @combo Very good idea! Thank you! Best regards! :) Pavel
  12. 565u

    Clipboard (Office XP)

    Thank you very much for your kind answer, SkipVought! It seems to be working. If you or anybody else could kindly guide me a bit further, it would be very nice too. Right now I am trying to get the text from the clipboard into a variable (xText), but Word does not like what i do to it (see...
  13. 565u

    Clipboard (Office XP)

    Hi and thanks for reading my question! I use .CopyFace/.PasteFace in one of my codes and they take advantage of Clipboard, which is a problem for me, because the clipboard may contain data (usualy text). I think I can either choose another method to replace Copy/PasteFace or store the clipboard...
  14. 565u

    .OnAction won't call a function with a parameter

    @combo Thank you very much for your time, effort and good will. TonyJollans has just solved it. @TonyJollans A bow. A long bow. Your solution is just beautiful and it works! I toyed around with .Parameter before but not in this way. The usage, the whole idea is just so nice!!! That's why YOU...
  15. 565u

    .OnAction won't call a function with a parameter

    Thank you for replying, but I dont understand: "You can pick values from innside the sub in the same way you planned get parameters." my plan is to: "...add a button that calls either a sub or a function with a parameter. That way I want to have a toolbar with several buttons that all call the...
  16. 565u

    .OnAction won't call a function with a parameter

    Hi and thanks for reading my post, I've just spent half an afternoon looking thru advices on this and nothing works. I have Word XP, I create a commandbar via VBA and then want to add a button that calls either a sub or a function with a parameter. That way I want to have a toolbar with several...
  17. 565u

    Word_checkbox, use VBA to create a new one based on circumstances

    Thx for your kind reply Paul! Unfortunately I dont think this is it. Firstly it doesnt work for me, but I could probably get around that, but most importantly, I dont think it pops up any msgbox-like box. It has a checkbox in the text and that's not what I need. I will look more thru the code...
  18. 565u

    Word_checkbox, use VBA to create a new one based on circumstances

    Hi, I wonder if it is possible to create a kind of MsgBox with checkboxes and an OK-Cancel buttons in Word (XP, 2002). I don't want to have the checkboxes stored anywhere because they will need to be created based on current circumstances (if that's possible). Say, I have variables x, y, z and...
  19. 565u

    selection.words(x).select on multiple words?

    WOW! Wow! and WOW again. That's such a nice solution! Thank you so much for sharing this!!!! Best wishes and a very happy new year! :-) Pavel
  20. 565u

    selection.words(x).select on multiple words?

    Many thanks for your reply. I am not very good at VBA so I may be wrong, but lets use a example: "This is an example sentence." let's say I make this selection (capitals show selection) "This is an exaMPLE SENTEnce." Now .count returns 2 because 2 words are in selection. But if I want to...

Part and Inventory Search

Back
Top