Consulting

Results 1 to 4 of 4

Thread: Custom buttons in the print preview.

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    VBAX Mentor
    Joined
    Dec 2008
    Posts
    404
    Location

    Custom buttons in the print preview.

    Is it possible for buttons added to PrinPreview Tab to work?

    My XML code:
    <customUI  xmlns="http://schemas.microsoft.com/office/2006/01/customui" >
        <ribbon >
            <tabs >
                <tab  idMso="TabPrintPreview" >
                    <group 
                        id="rxgrp_Send"
                        label="My New Group">
                        <button 
                            id="rxbtn_Send1"
                            imageMso="ArrangeByTo"
                            label="Button 1"
                            size="large"
                            onAction="rxbtn_Send1_onAction"/>
                        <button 
                            id="rxbtn_Send2"
                            imageMso="NewOutlookDataFile"
                            label="Button 2"
                            size="large"
                            onAction="rxbtn_Send2_onAction"/>
                    </group >
                </tab >
            </tabs >
        </ribbon >
    </customUI >
    The buttons on the Tab are created, but they do not work.
    I have some concerns that it might be impossible to do.

    In the attachment I showed an example.

    Artik
    Attached Files Attached Files

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •