Recent content by udi

  1. U

    Using VBA to creat hyperlinks in an email

    I should have mentioned that i'm new to VBA. With the help of link you provided i found this code: Sub MailURL() Dim OutApp As Object Dim OutMail As Object Dim strbody As String Set OutApp = CreateObject("Outlook.Application") Set OuitMail = OutApp.CreateItem(0) strbody =...
  2. U

    Using VBA to creat hyperlinks in an email

    My searches online didn't produce this info, so thanks a lot!
  3. U

    Using VBA to creat hyperlinks in an email

    Hi, I have a day to day task to send out bug summaries. The bug summaries are in a specific format: "NNNNN: bug summary".. where NNNNN are the bug number. In each bug summary i'm creating a hyperlink to the bug page, the link for each bug has the same format...
Back
Top