Search results

  1. L

    Outlook 2007 Contact Form Webpage

    The actual field name is LinkedIn Webpage....and I did this, but the same yellow shows up: Private Sub WebPage2() Dim strUrl As String Set Browser = CreateObject("InternetExplorer.Application") strUrl = objItem.UserProperties("LinkedIn Webpage") Browser.Navigate (strUrl) Browser.StatusBar...
  2. L

    Outlook 2007 Contact Form Webpage

    So I should try this??? Private Sub WebPage() Dim strUrl as String Set Browser = CreateObject("InternetExplorer.Application") strUrl = objItem.UserProperties("Second WebPage") Browser.Navigate (strUrl) Browser.StatusBar = False Browser.Toolbar = False Browser.Visible = True...
  3. L

    Outlook 2007 Contact Form Webpage

    Thanks much. I tried both, but each line of Browser.Navigate ( objItem.UserProperties("Second WebPage")) using it, or strUrl = objItem.UserProperties("Second WebPage") using it show in macro as yellow...no words of a problem, but did not do it....anything to fix please....the Display Name of...
  4. L

    Outlook 2007 Contact Form Webpage

    I found the following code that as a macro, opens up a webpage based on the webpage name you put in. Since I have in my contact form, a UserProperties field which I type in the webpage as a text word, not a link, can I change this code so the Browser.Navigate recognized the text words from the...
  5. L

    Outlook 2007 Contact Form Webpage

    In my form of contacts, I have the regular field of the webpage of the contact. Is there a way to add to the contact form, a second field with is for a different webpage?
  6. L

    Outlook 2007 Macro Reply to E-mail

    I did the following and it takes off the signature of the bottom and my signature is still at top as a reply, but the email does not show up: so what to add so it runs the template but not another signature automatically: replyEmail.HTMLBody = origEmail.Reply.HTMLBody
  7. L

    Outlook 2007 Macro Reply to E-mail

    I have the normal settings that all emails I send or reply use the signature....but it is not in the template....so I just want the signature at the bottom not to show up as when I reply using my template per the code, it shows my email, my signature and below the email message I received....so...
  8. L

    Outlook 2007 Macro Reply to E-mail

    You don't understand ...look at what I said at my last major post and it says how the two signatures show up...please read that...and let me know please
  9. L

    Outlook 2007 Macro Reply to E-mail

    Update please?
  10. L

    Outlook 2007 Macro Reply to E-mail

    Anyway to do it please?
  11. L

    Outlook 2007 Macro Reply to E-mail

    Here is the code...and the signature of me shows up right after the template email....and secondly, after the email message from the other side that is below my reply email.....is there a way in the code, that there is no signature at the bottom of the email after the email message from the...
  12. L

    Outlook 2007 Macro Search Contacts

    :)And just found it through your other area again: myOlApp.ActiveExplorer.Search txtSearch, solSearchScopeCurrentFolder Wonderful!!:)
  13. L

    Outlook 2007 Macro Search Contacts

    To the Smart Woman!!!:) Is there a way to change that code so it only searches the Folder that I am in, not all folders? That would be wonderful right away, as I have set up a search process for business purposes.
  14. L

    Outlook 2007 Macro Reply to E-mail

    Both of them work perfectly!!!! But my automatic signature does not show up any place in the email.....anything to do for that?
  15. L

    Outlook 2007 Macro Reply to E-mail

    Will try. Let you know
  16. L

    Outlook 2007 Macro Reply to E-mail

    So before display??
  17. L

    Outlook 2007 Macro Reply to E-mail

    Thanks much. I will try it. Please tell me where to put what you posted.
  18. L

    Outlook 2007 Macro Reply to E-mail

    And I found this code that replies to the email address of what was sent to me, but can't figure out how to reply using my template....so either code to be changed so the first one goes the email address of who sent, or this one, we add the template as the reply: Public Sub ReplyWithHTML()...
Back
Top