Custom Toolbar from Macro is not updating when Macro is updated

I have a Word template 2010 (.dotm) that has a macro that originated at least 2007, if not earlier.  There is a Customized Toolbar with Drop downs in the Add-ins tab populated from the Macro that contains a list of names. The drop down values have stopped
updating as additional names have been added.  I can get the individual names to appear in the QAT but that is not what we need. How do I get the Drop Downs in Customized Toolbar to update so that the new names appear under the drop down as specified
in the macro?  This is a snip it from the macro
Drop down is US
Name in Drop Down is Sales1
Sub USSales1()
' USSales1 Macro
' Macro recorded 2/5/2007 by Myerse00
    Selection.TypeText Text:="Sales Region 1"
    Selection.MoveRight Unit:=wdCell
    Selection.TypeText Text:="149 Branch"
    Selection.TypeParagraph
    Selection.TypeText Text:="CA"
    Selection.MoveRight Unit:=wdCell
    Selection.MoveRight Unit:=wdCell
    Selection.TypeText Text:="805"
    Selection.TypeParagraph
    Selection.TypeText Text:="805"
    Selection.TypeParagraph
    Selection.TypeText Text:="Please email"
End Sub
Any suggestions would be very much appreciated.
N-

Easily customizable toolbars were a feature of Word 97-2003 that corporate IT departments complained about. MS eliminated them, giving us the QAT instead. Such a toolbar never would have been automatically updated.
You can modify your toolbar using Word 2003. Otherwise, you can learn to do it using vba. I've never had the patience.
You can create custom ribbon tabs which are both more powerful and useful using XML (not through the Word 2010 program directly).
Customize the Ribbon (It doesn't take rocket science)
You may also want to explore the use of AutoText and Building Blocks.
Automated Boilerplate Using Microsoft Word With the AutoTextList field these could perhaps replace your macros without learning a lot of programming.
AutoTextList field - How to add pop-up lists to any Word document, so you can click your way through changes in seconds
Charles Kenyon Madison, WI

Similar Messages

  • Copy Custom toolbar from one instance to another in Project server 2007

    Hi,
    I am currently using project server 2007. We have a number of instances in our Project server enivoronment. Is it possible to copy customized toolbar from one instance to another? If yes, how?
    Thanks in advance 

    Hi Khaldun,
    As per my reply in your previous post, here is a link explaining how to use the organizer:
    Http://blogs.msdn.com/b/project/archive/2010/10/22/tips-and-tricks-copy-custom-views-filters-tables-and-other-elements-to-other-projects.aspx?Redirected=true
    Basically, just copy the toolbar from the global source instance into a blank project file. Then do the same operation from the blank file containing your toolbar into the destination global model, still using the organizer. 
    Hope this helps. 
    Guillaume Rouyre - MBA, MCP, MCTS

  • Why are calls from my favorites not ringing when my phone is silenced at night?

    Why are calls from my favorites not ringing when my phone is silenced at night?

    You Might Have scheduled do not diturb... Turn Of Scheduled button in settings>do not disturb>scheduled..

  • Custom image from Address book not syncing to Exchange.

    I am running Mac OS X v 10.7.5. I have added custom images to contacts in address book. I have an Exchange account which will sync the data (ie name, address, email) but not the custom image. Is there away to have custom images sync to Exchange/Outlook?

    I'm Running Mac OS X Lion, and have seen that changes made in the mac address book do not sync to gmail contacts but changes to gmail contacts do sync to the mac address book.
    Making a change to a contact on my phone does sync to gmail contacts, and then to the mac address book.
    Another test I ran was to change the same contact in gmail and mac address book.  I made a change to a mobile number and notes in one contact on my mac address book, attempted to sync, and the change does not appear in my gmail contacts.  I tried multiple times, restarted my web browser, restarted mac address book, the sync would not work.  I changed the same contact mobile number in gmail with a slightly different change to the notes field so I could see when an update occurred, and when I told mac address book to sync it recognized a conflict. When I select the mac address book change to resolve the conflict, the gmail contact is not updated.  When I repeated the experiment and selected the gmail contact to resolve the conflict the change is made in the mac address book.

  • How can I permanently save my customized toolbars and navigation button settings? When I run Norton Utilities CleanUp, Firefox gets reset to 'factory'.

    I like to clean things out on a regular basis but when I run the Norton Clean-up utility all of my custom toolbar and navigation button settings get reset to 'factory' condition. How can I permanently save these changes to my config or preference settings?

    Cookies, Completed Forms, .tmp files are all that's set to be cleared. If I can identify the appropriate elements I can protect them from deletion. Does anyone know?

  • Remove Contribute Menu and Custome Toolbar from Excel

    I've uninstalled Creative Suite 5, and older version 4 of some stand alone products. I've run the Creative Cloud Cleaner. But I still have the Contribute Menu Command and Custom Toolbar in Excel visible under the Add-ins tab. I'm stumped. I can't figure out how to remove them. They're inactive, no longer functional due to Contribute being un-installed. Any one have an idea? Thanks.
    them.

    You may follow the steps mentioned below to remove a Contribute COM add-in.
    Click the File tab in Excel, click Options, and then click the Add-Ins category.
    In the Manage box, click COM Add-ins, and then click Go. The COM Add-Ins dialog box appears.
    In the Add-Ins available box, clear the check box next to the add-in that you want to remove, and then clickOK.Note    This removes the add-in from memory but keeps its name in the list of available add-ins. It does not delete the add-in from your computer.
    To remove a COM add-in from the list of available add-ins and to delete the add-in from your computer, click its name in the Add-ins available box, and then click Remove.
    Please let me know if that works.For more information on this please click on the link mentioned below.
    Add or remove add-ins
    Regards,
    Rajeev.

  • Update Model from database does not update Nullable Property -- Possible bug?

    Hi,
    I don't know if this is the correct forum.
    When updating Model from database seems does not update the entity nullable property.
    and it will not update the Default Value from the Backend (MSSQL) also.
    I am using VS2008 SP1 3.5EF, XP64Bit Machine.
    Thanks
    vb.net GUI

    maybe related..
    today.. i changed the PK size.. from char(10) to char(36)
    got many problems.. easy to fix...
    but some query stop working:
    Table1Record.Table2Reference.Load(); //i'm trying to load table2 from table1..
    throw this error: A relationship multiplicity constraint violation occurred: An EntityReference expected at least one related object, but the query returned no related objects from the data store.
    i get this error only when PK is greater than char(10)...
    with SQL profiler.. i saw that PK was truncated to char(10) :
    exec sp_executesql N'SELECT [... some fields...]
    FROM  [dbo].[Table1] AS [Extent1]
    INNER JOIN [dbo].[Table2] AS [Extent2] ON [Extent1].[NoTable2] = [Extent2].[NoTable2]
    WHERE [Extent1].[NoTable1] = @EntityKeyValue1',N'@EntityKeyValue1 char(10)',@EntityKeyValue1='a2164b14-e'
    (NoTable1 is the PK changed from char(10) to char(36))
    i'm working with VS.NET 2008
    so, i looked at Model1.Edmx... in notepad
    CSDL was not changed when i did the "Update Model from Database" !!!
    here is SSDL part:
            <EntityType Name="Table1">
              <Key>
                <PropertyRef Name="NoTable1" />
              </Key>
              <Property Name="NoTable1" Type="char" Nullable="false" MaxLength="36" />
    here is CSDL part:
            <EntityType Name="Table1">
              <Key>
                <PropertyRef Name="NoTable1" />
              </Key>
              <Property Name="NoTable1" Type="String" Nullable="false" MaxLength="10" Unicode="false" FixedLength="true" />
    Cool.. i found the prob.... but why ? and how to correct this ? manually change Model1.Edmx in notepad ??
    why the maxlength property is readonly in Model Browser pane ??
    what about VS.NET 2010 ?! same prob ??
    is it a bug or by design ?
    I hope this can help someone.. I spent a few hours on this prob
    Patrick

  • Custom propertie's values are not updated for workflow metadata

    Hi,
    I've a requirement where I need to add and update some properties. to /etc/workflow/instance/<Instancename>/data/metadata node.
    I've two workflow Process steps,
    Process step 1:
        Adds some properties to metadata.
    Process step 2:
        Updates the propertie's values which are added in Process step 1.
    But the issue is update is not working when the node is /etc/workflow/instance/<Instancename>/data/metadata.
    i.e. In the step 1, Properties are added to metadata node but In the step 2 propertie's values are not updated to the same node.
    Here is my process code:
    =================================================
    import java.util.Locale;
    import java.util.StringTokenizer;
    import javax.jcr.Node;
    import javax.jcr.Session;
    import org.apache.felix.scr.annotations.Component;
    import org.apache.felix.scr.annotations.Properties;
    import org.apache.felix.scr.annotations.Property;
    import org.apache.felix.scr.annotations.Reference;
    import org.apache.felix.scr.annotations.Service;
    import org.osgi.framework.Constants;
    import javax.jcr.Value;
    import com.adobe.granite.workflow.WorkflowException;
    import com.adobe.granite.workflow.WorkflowSession;
    import com.adobe.granite.workflow.exec.WorkItem;
    import com.adobe.granite.workflow.metadata.MetaDataMap;
    import com.adobe.granite.workflow.exec.WorkflowProcess;
    import com.adobe.granite.workflow.model.WorkflowModel;
    import org.apache.sling.api.resource.ResourceResolver;
    import org.apache.sling.api.resource.ResourceResolverFactory;
    import org.apache.sling.jcr.resource.JcrResourceUtil;
    import org.apache.sling.api.resource.PersistableValueMap;
    import org.apache.sling.api.resource.PersistenceException;
    import org.apache.sling.api.resource.Resource;
    @Component
    @Service
    @Properties({
           @Property(name = Constants.SERVICE_DESCRIPTION, value = "Test"),
           @Property(name = Constants.SERVICE_VENDOR, value = "Adobe"),
           @Property(name = "process.label", value = "Test 1")})
    public class Test1 implements WorkflowProcess
        @Reference
        private ResourceResolverFactory resourceResolverFactory;
              public void execute(WorkItem workItem, WorkflowSession wfsession, MetaDataMap metadata)
                                  throws WorkflowException {
                        System.out.println("Testing");
            try{
                ResourceResolver resolver;
                resolver = resourceResolverFactory.getAdministrativeResourceResolver(null);
                String instancePath = workItem.getWorkflow().getId();
                Node instanceNode=null;
                Session jcrSession = wfsession.adaptTo(Session.class);
               String payload = (String) workItem.getWorkflowData().getPayload();
               //instanceNode=JcrResourceUtil.createPath(payload+"/jcr:content", "nt:resource","nt:resource", jcrSession, true);
                                  instanceNode=JcrResourceUtil.createPath(instancePath+"/data/metaData", "nt:resource","nt:resource", jcrSession, true);
                                  System.out.println("Test: instance PAth:"+instanceNode.getPath());
                Resource resource = resolver.getResource(instanceNode.getPath());
                    if(resource != null)
                        PersistableValueMap valueMap= resource.adaptTo(PersistableValueMap.class);
                        valueMap.put("name", "Rajesh");
                        valueMap.put("id", "A002");
                        valueMap.put("designation","SE");
                        valueMap.save();
                        System.out.println("Name:"+valueMap.get("name"));
                        System.out.println("Id:"+valueMap.get("id"));
                jcrSession.save();
                resolver.close();
            }catch(Exception e)
                System.out.println("Exception:"+e.getMessage());
    ===================
    The code works fine when the node is payload/jcr:content.
    Note : Process 1 and Process 2 code is same expect the values I'm passing to the PersistableValueMap.
    Any pointers would be more helpful..
    Thanks
    Siva

    Is there anything wrong in my code/ it's a bug..  
    Thanks
    Siva

  • Changes in Picturealbums from Iphoto is not updated within Itunes/ATV

    I would like to choose what picture albums from IPhoto that should be synchronized to AppleTV. But the AppleTV tab within Itunes does not update with the new albums that I have created in Iphoto. Anyone has an idea how I can force Itunes to refresh the list of shared albums from Iphoto ?
    I've tried reboot everything there is after I made my changes

    Welcome to the  Discussion Forums.
    Could there be any photos with file types not supported by the tv in these albums. Or any illegal characters such as "/" in any of the album names, file names or even keywords or descriptions. Have you tried rebuilding your iphoto library.

  • Infopackage hierarchy selection from OLTP is not saved when transported

    I have created an infopackage in Development that is pulling an available hierarchy.  I then transported Infopackage to QA, but the Hierarchy, although is available from OLTP, is not selected in InfoPackage.  I created a copy of InfoPackage in the QA system and selected available hierarchy.  It allows me to select hierarchy, save and execute.  The issue I have is I need to transport the InfoPackage, created in DEV to all QA and Production systems.  The InfoPackage is not retaining available hierarchy when being transported.

    Hi,
    Usually infopackage will not be transported but created in QA and production systems. If the infopackage is transported to QA, the pushbutton in infopackage Hierarchies in OLTP will bring the hiearachies available in the QA R/3 system. Appropiate hierachy can be selected and the same infopackage can be saved.
    Regards,
    Dinesh D

  • SQL Insert from "Select Query" Not Work when use Order By

    Hai every body...
    I have a problem with T-SQL. I use SQL Server 2012 Express with SP2 on Windows 7 32-bit SP1.
    This is the problem
    -- first, create table
    create table dtoth.tableA (
    id_data TINYINT PRIMARY KEY,
    kd_data VARCHAR(20),
    nm_data VARCHAR(200)
    -- then, insert values
    INSERT INTO dtoth.tableA VALUES (0,'100.001','KAS');
    INSERT INTO dtoth.tableA VALUES (1,'110.001','BANK');
    INSERT INTO dtoth.tableA VALUES (2,'120.001','PIUTANG DAGANG');
    INSERT INTO dtoth.tableA VALUES (3,'121.001','PIUTANG GIRO');
    INSERT INTO dtoth.tableA VALUES (4,'130.001','PERSEDIAAN BARANG DAGANGAN');
    -- then, i create a temporary table
    create table dtoth.temp_tableA (
    kd_data VARCHAR(20),
    nm_data VARCHAR(200)
    -- then, i create a store procedure to call data from temporary table
    CREATE procedure dtoth.report
    AS
    BEGIN
    DELETE FROM dtoth.temp_tableA;
    INSERT INTO dtoth.temp_tableA SELECT kd_data, nm_data FROM dtoth.tableA ORDER BY kd_data desc;
    SELECT * FROM dtoth.temp_tableA;
    END
    GO
    When i execute the the store procedure with
    EXEC dtoth.report;
    the result is not accurate like this (kd_data not sorted desc):
    I want the column "kd_data" sort descending because i use ORDER BY kd_data DESC in insert statement on the store procedure.
    By the way, if i execute code like :
    SELECT kd_data, nm_data FROM dtoth.tableA ORDER BY kd_data desc;
    the result is correct like this
    So, what solution for my code in the store procedure ?
    Thanks.

    to get the data sorted, you should order by in your select in the stored procedure
    sorting while inserting does not guarenatee order..
    remove the order by in insert statement and put that in the select statement
    so, your procedure should be 
    -- then, i create a store procedure to call data from temporary table
    CREATE procedure dtoth.report
    AS
    BEGIN
    DELETE FROM dtoth.temp_tableA;
    INSERT INTO dtoth.temp_tableA SELECT kd_data, nm_data FROM dtoth.tableA;
    SELECT * FROM dtoth.temp_tableA ORDER BY kd_data desc;
    END
    GO
    Hope it Helps!!

  • With iOS 6 on my 4th gen iTouch I am finding I no have to delete the playlist from my iTouch, not the when I sync. Now the paylist is being deleted from my library as well. What am I doing wrong?

    With the new iOS 6 I have to use on my old iTouch (4th gen) instead of deleting a playlist thru the sync, I was instructed to delete it on the device. Now when I sync I am finding the playlist has been deleted from the library as well. I just want it off teh device, not erased. What am I doing wrong?

    See these previous discussions:
    Waiting applications: Apple Support Communities
    Downloading apps stuck on waiting...: Apple Support Communities

  • Custom fields from Shopping cart not getting transferred

    We have added a few custom fields in both Shopping cart and PO screens.
    Somehow when a cart is getting converted to a PO, the values maintained in the shopping cart are not flowing in to the PO.
    Please advice as to what needs to be done to take care of this issue.
    Thanks.
    Anuradha SenGupta.

    Hello Anuradha,
    Please go thru the link .
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20b36c12-685f-2c10-4fb4-ba2e0b969c27?QuickLink=index&overridelayout=true
    Also in your badi BBP_CREATE_BE_PO_NEW, try to implement the code in the similar way which I did for creating PR in Backend.
    DATA : ls_req_item TYPE bapi_te_requisition_item.
      LOOP AT is_sc_document-item INTO wa_sc_item.
        wa_extension-structure        = 'BAPI_TE_REQUISITION_ITEM'.
        ls_req_item-preq_item         = wa_sc_item-number_int.
        ls_req_item-z_req_type_db     = wa_sc_item-z_req_type_db.
        wa_extension-valuepart1       = ls_req_item.
        APPEND wa_extension TO cs_rq_document-it_extensionin.
        CLEAR wa_extension.
        ls_req_item-preq_item         = wa_sc_item-number_int.
        ls_req_item-z_asset_sub_cat   = wa_sc_item-z_asset_sub_cat.
        wa_extension-valuepart1       = ls_req_item.
        wa_extension-valuepart2       = ls_req_item.
        APPEND wa_extension TO cs_rq_document-it_extensionin.
        CLEAR wa_extension.
      ENDLOOP.
    Hope this will help you.

  • Mydrive,from TomTom, will not update in Firefox but will in Internet Explorer.Can you please advise

    My TomTom device requires updating using 'Mydrive'. This used to work in Firefox but does not now. It will work if loaded through Internet explorer

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    *https://support.mozilla.org/kb/how-clear-firefox-cache
    *https://support.mozilla.org/kb/Deleting+cookies
    *http://kb.mozillazine.org/Websites_look_wrong

  • Files from LR are not returned when saved, why?

    Hi, export files from Lightroom 5.3 CC to Photoshop CC, edit them and hit control /s but they don't return to Lightroom. They are saved in the catalogue.  Adobe agent suggested my error was to convert all my Raws to DNG, but this is common and it is Adobe's own format. Also said use synchronise folder command, but this also returns deleted pics and is not the way things are supposed to work.
    I have re-installed both programmes.
    Fault only found with raw files, JPEG is fine. Also round tripping to Elements with raw files is OK. Agent gave up after more than an hour tinkering with my computer and promised to "escalate my report" saying I would be called back. Week later still waiting.
    Fault might have been caused by last update as was working before.
    Don't think I will be renewing CC contract. Anyone else out there?

    Hi, step one: yes using edit in command to send file to Photoshop. Step two: edit it in Photoshop. Step three: used save command in menus or press Ctrl. S, (this is supposed to send the file back to Lightroom where the main action is, and does so with JPEG but not DNG files). What happens is they disappear from the work flow. They are saved to the catalogue on the external hard drive where they have to be re-imported to Lightroom (Adobe agent confirmed this not supposed to happen and I am doing the right thing. He suggests using syncronize folder command, but this is not just an extra step, it also brings back all the other files that have been deleted from Lightroom.)
    Something that used to work smoothly and as designed, is not, and the agent seemed to have given up after one and a half hours in control of my computer.
    Someone else has the same problem, hence the post. Thanks for your attention.

Maybe you are looking for