Search results

  1. L

    Outlook 2007 Contact Form Code Not Working

    I have not heard back yet, and I have to fix this. Can you help on this?
  2. L

    Outlook 2007 Contact Form Code Not Working

    Any update to fix this please?
  3. L

    Outlook 2007 Contact Form Code Not Working

    For many years through this group and others, I have a code in the form for my contact and in the contact form, when I click on the area, it runs the code. But just recently, it now says that it cannot find the specific object which has been working for ever until now. The code creates a...
  4. L

    Outlook 2007 - Userform

    I used he words Item.Close 0 at the end of the code, and it did not work. Any other way to do it?
  5. L

    Outlook 2007 - Userform

    I have a Userform and in the Userform there are commandbuttons, and the code for each command button is a list of macros that delete certain fields of the contact. It works, but when I run it, it does it, but is does not close the Userform when I run it. So here the example of the code for a...
  6. L

    Outlook 2007 Custom Form and Toolbar Not Working

    Yes...that's how it worked
  7. L

    Outlook 2007 Search All Fields in Contacts

    Since I have many fields in the contact form for all my contacts, if I want to search my contacts as to certain words in a field, is there a way to search all fields of the contacts, not just one field?
  8. L

    Outlook 2007 Custom Form and Toolbar Not Working

    The toolbars are at the top of the outlook area...not a part of the contact form.....The way I fixed the form is that when I change it, I also copy it as a Test Form so I can see if I like it. And since the Test Form was working, I published it as the name of the contact form, and it then...
  9. L

    Outlook 2007 Custom Form and Toolbar Not Working

    I fixed the contact form problem, but I need the way to fix getting the toolbars I created with all the macros that I dragged to them.
  10. L

    Outlook 2007 Custom Form and Toolbar Not Working

    Over many years I created the new custom form for my contacts and the new toolbars at the top, and the toolbars are not showing up and the when I open the contact, it says: the custom form cannot be opened. Can we solve this right away as the custom form and the toolbars are a major part of my...
  11. L

    Outlook 2007 Contract Address

    Got it! but i want it to do it for one contact i open or select a list of contacts in a folder. Not just change all in the contact folder. So what do we adjust for that please?
  12. L

    Outlook 2007 Contract Address

    Got it! So what do I change for the home address to get the address from the business address of the contact default field? If .OtherTelephoneNumber <> "" Then If .MobileTelephoneNumber = "" Then .MobileTelephoneNumber = .OtherTelephoneNumber .OtherTelephoneNumber = ""
  13. L

    Outlook 2007 Contract Address

    I don't see a macro you mentioned.
  14. L

    Outlook 2007 Contract Address

    To All if this Helps I added to my contact form, then two additional fields of the Business Address and the Home Address, and the Business Address Display is TextBox50 and the Home Address Display is Textbox51, and whatever you put in the default areas of business and home, it automatically...
  15. L

    Outlook 2007 Contract Address

    It turns out that the regular address in all contacts is the business address and you have to change it form the droplist to home address....but since I added all the home addresses to the business address the default address, how can I convert the business addresses to the home address ? If...
  16. L

    Outlook 2007 Contract Address

    This did it...thanks very very much: Sub Test3() Dim objApp As Application Dim objNS As NameSpace Dim objFolder As MAPIFolder Dim objItem As Object Set objApp = CreateObject("Outlook.Application") Set objNS = objApp.GetNamespace("MAPI") On Error Resume Next If...
  17. L

    Outlook 2007 Contract Address

    these are existing contacts with one line in the address field So not sure what to do as it is the standard address in the contact and the field of it is Address Selected.
  18. L

    Outlook 2007 Contract Address

    I have the first line in the contact address, and this did not had the next line..so speficially what to do please: Sub Test3() Dim objApp As Application Dim objNS As NameSpace Dim objFolder As MAPIFolder Dim objItem As Object Set objApp = CreateObject("Outlook.Application") Set objNS =...
  19. L

    Outlook 2007 Contract Address

    The following code puts the City, State and Zip Code in the Contact address, but not below the first line of the address...so what do we add so it puts it below the first line of the address: Dim objApp As Application Dim objNS As NameSpace Dim objFolder As MAPIFolder Dim objItem As...
  20. L

    Outlook 2007 Contract Address

    The following macro/code that I run, adds the City, State and Zip Code to the Note field, and not the Address Field of the contact. So if I have a contact list that each has an address, but not the City, State and Zip Code, which is the same for all, how can we change this so the Outlook 2007...
Back
Top