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 strongm 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. JensKKK

    How to select a tab in a multipage?

    Thanks combo. Problem solved.
  2. JensKKK

    How to select a tab in a multipage?

    I have created a multipage on a form and I would like to select one of the tabs (page1 /page 2) when loading the form. I have tried a couple of the commands that come up when userform1.mulitpage1.xy however I cant' find the right command to select page1 or page2. Any suggestions are welcome...
  3. JensKKK

    MS Excel is very very slow in deleting content! Any work around that?

    I tried you code on a worksheet (with no formulas) with a resize of 100x200. Both your code and misterstick works practically instantly with xl 2007. ck1999 That is interesting. I have only one computer with ms excel 2007 and that b.. is really slow when deleting content (we are talking here...
  4. JensKKK

    MS Excel is very very slow in deleting content! Any work around that?

    John, Thanks for your suggestions. I tried your code, but it does not make any difference. Excel 2007 still runs very slow. It must be something else.
  5. JensKKK

    Problems when pasting 100's of pics into MS Word

    Thanks for your suggestion macropod, It is correct that I create the graphs in MS Excel and then send them to MS Word. I have not considered to create link, because I was not aware of them. Would you mind to give me a code example on how to make it. Cheers
  6. JensKKK

    Problems when pasting 100's of pics into MS Word

    Gerry, I did not copy the whole code in my post (it would have been very long). I am using selection very often and I don't use range at all. Is there an explanation why range is better than selection? Do Until weiter = False 'Text in kleinen Portionen in Word drucken If word_out Then...
  7. JensKKK

    Problems when pasting 100's of pics into MS Word

    Thanks simian, this is also my experience. Jens
  8. JensKKK

    Problems when pasting 100's of pics into MS Word

    I have written a program that generates a report that can be viewed in MS Excel and MS Word. Whereas MS Excel is happy to display a couple of 1000 graphs, MS Word goes mad when pasting in more than 100 graphs. MS Word also becomes pretty slow when pumping in so many data. Is that a limitation...
  9. JensKKK

    How can I open the default email editor in MS Excel?

    PHV that is the solution. -> replacing the " " with the % does the trick. Many thanks
  10. JensKKK

    How can I open the default email editor in MS Excel?

    Shell ("cmd.exe /c start mailto:email@address.com?Subject=""This is a test""&body=Test") give a error message. Commandline argument not valid
  11. JensKKK

    How can I open the default email editor in MS Excel?

    Subject="This is a test" Seems not compatible with the shell syntax. Shell ("cmd.exe /c start mailto:email@address.com?Subject=This is a test&body=Test")
  12. JensKKK

    How can I open the default email editor in MS Excel?

    using "_" works kind of, but does not look brilliant. Or? This_is_a_test
  13. JensKKK

    How can I open the default email editor in MS Excel?

    Tried to add the subject. Which worked partially. It displays "This" and then nothing. It looks like the that I have to replace the " " with something. What should I use?
  14. JensKKK

    How can I open the default email editor in MS Excel?

    Do you know how to write some text in the Re: and body text?
  15. JensKKK

    How can I open the default email editor in MS Excel?

    Genius. Code worked right out of the box. Thanks very much.
  16. JensKKK

    How can I open the default email editor in MS Excel?

    PHV, I think I could get it work with Outlook, but I am writing a piece of software that should be of general use (and not everybody is using Outlook, but use Lotus Notes instead ...). Thanks anyway. I might try to send a email via MS Word that could be an alternative.
  17. JensKKK

    How can I open the default email editor in MS Excel?

    Well the title says already what I want to do. Ideally I would like to open the default email editor on a computer when a command buten is pressed. Second question: can I insert the email address in the To field of the email? Many thanks for reading.
  18. JensKKK

    How can I find and display the current time in a cell?

    Hi, I used the two lines of code to display the data in a form. And I want to display the current time as well. How can I do that? Thanks for reading til here. Sheets("my Sheet").Cells(130, 22).value = Date Label6.Caption = Sheets("my Sheet").Cells(130, 22)
  19. JensKKK

    How can I select a picture in MS Word using VBA

    This is the code that worked best for me. With ActiveDocument.InlineShapes(ActiveDocument.InlineShapes.Count) .Fill.Visible = msoFalse .Fill.Solid .Fill.Transparency = 0# .Line.Weight = 0.75 .Line.Transparency = 0# .Line.Visible = msoFalse .LockAspectRatio = msoTrue...
  20. JensKKK

    How can I select a picture in MS Word using VBA

    Thanks for the many suggestions. I will test them and will report back. Thanks again.

Part and Inventory Search

Back
Top