Search results

  1. L

    Macro Create Contact and Save

    There may be other areas again to do things faster, but given how you gave me a form of a code where when I run it, it adds to the fields of the contact a create, I can call that macro at the end of the code I showed, so it will add to the fields immediately when I create the contact....so also...
  2. L

    Macro Create Contact and Save

    I looked at some other codes re folders and I changed the foregoing to the following, and it creates the contact using my form to the selected folder: Sub NewContactFromNameSelected() Dim oContact As outlook.contactItem Dim oFolder As outlook.MAPIFolder Set oContact =...
  3. L

    Macro Create Contact and Save

    The following code words fine, no problems and it runs another I created named "PastetoFullName" so when I create the contact, it adds to the Full Name of the contact name I copied from somewhere else....and it put's it in a folder as you see...but, is there away that it creates the contact to a...
  4. L

    Macro Create Contact and Save

    How does looking a the All Fields page and check the user defined fields show what there is a problem?
  5. L

    Insert Photo to Contact

    To All if This Helps: The following code adds the photo to the contact when I open the contact, select the contact, open the contact from an email I received...and of course if there are parts of it that don't need to been in there, I don't know what to take out, as I found the standard code I...
  6. L

    Insert Photo to Contact

    I also have ask right away as we did the same for another code and I can' t remember exactly what we did. In the past we had codes that worked when we select or open a contact, but if we open the contact from the email we received there was something else to add to the code, so the code worked...
  7. L

    Insert Photo to Contact

    I just figured out how to change the code we use so it removes the Picture...here is the code if that helps others Public Sub UpdateContactPhoto2() Dim myOlApp As outlook.Application Dim myNamespace As outlook.NameSpace Dim myContacts As Selection Dim myItems As outlook.Items Dim...
  8. L

    Insert Photo to Contact

    And I forgot to ask ......before I changed the code so it only goes to the selected contact, it add the photo to all Contacts in the default folder...as I have many many contacts in the default folder......is there simple code that removes the picture form each selected contacts....as that...
  9. L

    Insert Photo to Contact

    And I just did your line re the jpg and it work perfectly as well.....again, thanks so much as this will be very fast in adding pictures to a contact etc...as you don't have to find the picture when you got to the contact.... And again thanks very very much!!
  10. L

    Insert Photo to Contact

    By the way, I did it before I saw your answer...and the difference is just the .jpg after the name instead of & ".jpg" so will try what you showed to see if it does the same....and thanks so so much!!!
  11. L

    Insert Photo to Contact

    I just figured out the following and it does it perfectly....as there is no fullname etc...you just put the name of the photo after the word Pictures and it goes to ...thanks much of your time...as if I right click on a photo online and save it, I can just replace of the earlier on to the same...
  12. L

    Insert Photo to Contact

    Thanks much...I just don't understand what to put in the code re the name of the file so the strPhoto points to the file...let's say the the name of the Photo is "NewPhotoName" ..and the path is "C:\Users\Username\ Pictures" so is the strPhoto means: strPhoto = "C:\Users\Username\ Pictures"...
  13. L

    Insert Photo to Contact

    Thanks much...I just don't understand what to put in the code re the name of the file so the strPhoto points to the file...let's say the the name of the Photo is "NewPhotoName" ..and the path is "C:\Users\Username\ Pictures" so is the strPhoto means: strPhoto = "C:\Users\Username\ Pictures"...
  14. L

    Insert Photo to Contact

    Also, using the code I posted, and what I saw, it can just go to a selected contact using Dim myContacts As Selection and Set myContacts = Application.ActiveExplorer.Selection......so in the strPhoto, can you tell me how I put in the fullname or where it comes from..as do I use the same full...
  15. L

    Insert Photo to Contact

    I understand your thoughts...but she always gives me the code that she knows etc.
  16. L

    Insert Photo to Contact

    I understand your thoughts...but she always gives me the code that she knows etc.
  17. L

    Insert Photo to Contact

    I understand ..that's why I would like the first macro that saves the photo to a folder as a file and a name the photo...that way there should be another macro that inserts the photo from a specific folder to the contact.
  18. L

    Insert Photo to Contact

    Thanks but that is not helpful. All I want to do is select a photo from different places etc....and then run a macro that inserts that photo to photo of a contact. Now if there is a second code that after I select a photo and copy it, it saves it to a specific folder I identify and just one...
  19. L

    Insert Photo to Contact

    Got it...so will wait to here back re the code change.....the easy way would be that copy a picture and save it to a file and the name of the picture is NewName...and then when I run the code re the contact photo, it is the photo from the file and related name NewName....that way when I just do...
  20. L

    Insert Photo to Contact

    Got it. I appreciate you doing it as soon as possible. And in a different code I learned from you, if I paste something from what I copied, it used the words DataObj.GetFromClipboard and strPaste = DataObj.GetText(1) and objItem.UserProperties (name of field) = strPaste...... Any quick...
Back
Top