Search results

  1. W

    Question Save mails produced by smtpmail.p

    I'm open for any other file-format as well....
  2. W

    Question Save mails produced by smtpmail.p

    Hi everybody, This question is a follow-up to Resolved - sending outlook mail with graphics I not only succeeded to send embedded graphics with Outlook, but I also successfully implemented smtpmail - as Tom proposed - because for bulk-mails its a far better solution than Outlook. The problem...
  3. W

    Resolved sending outlook mail with graphics

    For everybody who is interested: The problem was neither Progress nor Outlook, and it's also not version-depending ! The solution is described here: What Does It Mean to Embed Images in An HTML Email? (Updated) Thanks to everybody who replied !
  4. W

    Resolved sending outlook mail with graphics

    I also tested on Win 10 and Outlook 2019, same Progress-version, same results
  5. W

    Resolved sending outlook mail with graphics

    I'm not writing the HTML-code myself, but it gets converted from RTF (see previous thread Answered - using System.Windows.Forms.ClipBoard). In this thread Osborne pointed me to a code-project-article Converting RTF to HTML in VB.NET the Easy Way, which I implemented. At the very end of this...
  6. W

    Resolved sending outlook mail with graphics

    Sorry about that: OE 11.7.2, Win 8
  7. W

    Resolved sending outlook mail with graphics

    Found some Knowledebase-articles (eg. Progress Customer Community) and it seems that accessing Microsoft Office via .NET is not supported. Please correct me if I'm wrong.
  8. W

    Resolved sending outlook mail with graphics

    there is a screenshot of an example-email attached to my very first post
  9. W

    Resolved sending outlook mail with graphics

    I'm sending emails now with smtpmail.p, HTML-Text looks nice, but still no images. Am I missing something ? Is anybody else able to send mails with images using smtpmail.p ? Send them to me: wolfgang.schoelmberger@aon.at
  10. W

    Answered TAB-Problems mixing NET-controls AND ABL-widgets

    Thanks Osborne, IT WORKS !!! I saw this KB-Article before, but didn't pay much attention, because of a comment in the Microsoft-docs: "You should not put any logic in the PreviewKeyDown event handler, other than to set the IsInputKey property". I will go on with this solution and see, if there...
  11. W

    Answered TAB-Problems mixing NET-controls AND ABL-widgets

    Looked quite easy at first glance, but now i'm struggeling since hours.... I hope somebody can help me, because I'm absolutely stuck. I have the following code: /* If TAB is pressed on the FillIn before the textbox, move focus to the textbox */ ON TAB OF cFillIn-Before DO...
  12. W

    Answered TAB-Problems mixing NET-controls AND ABL-widgets

    Thanks Cringer, I'm aware of this, but I thought there might be an easier solution, as Progress supports mixing NET-controls and ABL-widgets.
  13. W

    Answered TAB-Problems mixing NET-controls AND ABL-widgets

    Hi everybody, Found a simple demo-program here (Question - Using Ocx Microsoft richtextbox) that uses richtextbox together with some ABL-buttons in one frame. My problem is: when the program starts, richtextbox has focus and one can't TAB-out of it. as soon as you have pressed one of the...
  14. W

    Resolved sending outlook mail with graphics

    was thinking of this as well, but I couldn't find anything. What exactly did you google for ?
  15. W

    Resolved sending outlook mail with graphics

    I agree totally, nobody knows what Microsoft will support in the future. BUT: right now all our customers are using Microsoft Office as their business solution, an they insist in using outlook. They also want all their wmails in their Sent-folders, even if the mails are sent from our software...
  16. W

    Resolved sending outlook mail with graphics

    Thanks for the answer, I will give it a try
  17. W

    Resolved sending outlook mail with graphics

    Tom, what do you mean by "send email" ?
  18. W

    Resolved sending outlook mail with graphics

    Hi everybody, Found the Openedge-Knowledgebase-article Progress KB - How to add graphical or HTML content to the email body using Outlook COM object - How to add graphical or HTML content to the email body using Outlook COM object. It works partly. The outlook mail shows the picture, when I...
  19. W

    Answered using System.Windows.Forms.ClipBoard

    GetText returns only the text, not the formatting. Maybe converting RTF to HTML doesnt work at all using the clipboard. I have an other solution, but it is slow: - save the contents of a RichTextBox to a file - open this file with word - and save it as HTML works, but it is slow Thanks anyway...
Back
Top