Disabling command bar IDs in Project 2013

Unlike the rest of the Office 2013 group policy admin templates, there doesn't appear to be anyway to disable command bar IDs using the Project 2013 admin template. Is there any reason for this and/or is there anyway to disable command bar IDs in
Project?

Hi,
According to your description, I have tested to check the "Office2013grouppolicyandoctsettings.xlsx", but I can't find the "Disableitemsinuserinterface". Thus, I checked the
article, Policy settings for disabling user interface items are unavailable for Project 2013.
I also try to add the "Disableitemsinuserinterface"
manually to Porj15 ADMX template, but no successful.
Pleaes wait for Microsoft fixed and thanks for your understanding.
And we can submit the feedback by using the smile face (near the top right of the screen).Click this and you will be offered a smiley face and a frowning face.  Click the frown and you will be presented with a feedback form direct to the developers,
you can even click a box to report your problem.
Thanks
George Zhao
Forum Support
Come back and mark the replies as answers if they help and unmark them if they provide no help.
If you have any feedback on our support, please click "[email protected]"

Similar Messages

  • How to disable app bar in my project

    I am developing a WP8 app with sliding menu/drawer in it.
    Whenever i tried to disable the app bar it throws an exception on line "ApplicationBar.IsVisible = true;" code behind
    My question is how can i disable the app bar, see the code below
    xaml
    <!--LayoutRoot is the root grid where all page content is placed-->
        <Canvas x:Name="canvas" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Height="800" Background="Black" ManipulationStarted="canvas_ManipulationStarted" ManipulationDelta="canvas_ManipulationDelta"
    ManipulationCompleted="canvas_ManipulationCompleted">
            <Canvas.Resources>
                <Storyboard x:Name="moveAnimation">
                    <DoubleAnimation Duration="0:0:0.2" To="0" Storyboard.TargetProperty="(Canvas.Left)" Storyboard.TargetName="LayoutRoot" d:IsOptimized="True" />
                </Storyboard>
            </Canvas.Resources>
            <!--<VisualStateManager.VisualStateGroups>
                <VisualStateGroup x:Name="CommonStates">
                    <VisualStateGroup.Transitions>
                        <VisualTransition GeneratedDuration="0:0:0.3">
                            <VisualTransition.GeneratedEasingFunction>
                                <QuinticEase EasingMode="EaseInOut"/>
                            </VisualTransition.GeneratedEasingFunction>
                        </VisualTransition>
                    </VisualStateGroup.Transitions>
                    <VisualState x:Name="Normal">
    <Storyboard>
                            <DoubleAnimation Duration="0:0:0.2" To="-420" Storyboard.TargetProperty="(Canvas.Left)" Storyboard.TargetName="LayoutRoot" d:IsOptimized="True"/>
    </Storyboard>
                    </VisualState>
                    <VisualState x:Name="LeftMenuOpened">
                        <Storyboard>
                            <DoubleAnimation Duration="0:0:0.2" To="0" Storyboard.TargetProperty="(Canvas.Left)" Storyboard.TargetName="LayoutRoot" d:IsOptimized="True"/>
                        </Storyboard>
                    </VisualState>
                    <VisualState x:Name="RightMenuOpened">
    <Storyboard>
                            <DoubleAnimation Duration="0:0:0.2" To="-840" Storyboard.TargetProperty="(Canvas.Left)" Storyboard.TargetName="LayoutRoot" d:IsOptimized="True"/>
    </Storyboard>
                    </VisualState>
                </VisualStateGroup>
            </VisualStateManager.VisualStateGroups>-->
            <Canvas  CacheMode="BitmapCache" x:Name="LayoutRoot" Width="420"  VerticalAlignment="Stretch" Background="Transparent" Canvas.Left="-420" Height="768">
                <!--<Grid.ColumnDefinitions>
                    <ColumnDefinition Width="420"/>
                    <ColumnDefinition Width="480"/>
                    <ColumnDefinition Width="420"/>
                </Grid.ColumnDefinitions>
                <Grid.RowDefinitions>
                    <RowDefinition Height="*"/>
                </Grid.RowDefinitions>-->
                <Border  Width="420"  CacheMode="BitmapCache" Background="#FF31363E" Grid.Column="0" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"
    Height="{Binding ActualHeight, ElementName=canvas}">
                    <StackPanel Orientation="Horizontal">
                        <Grid Width="410">
                        </Grid>
                    </StackPanel>
                </Border>
                <Grid x:Name="grdCommands" Margin="420,0,0,0" CacheMode="BitmapCache" Grid.Column="1" Background="#FFCFD4E2" Height="{Binding ActualHeight, ElementName=canvas}"
    Width="480" >
                    <Border Grid.Row="1" >
                        <Border.Background>
                            <ImageBrush ImageSource="/Assets/bg.jpg" Stretch="UniformToFill" />
                        </Border.Background>
                        <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
                        </Grid>
                    </Border>
                </Grid>
            </Canvas>
        </Canvas>
        <phone:PhoneApplicationPage.ApplicationBar>
            <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">
                <shell:ApplicationBarIconButton IconUri="/Assets/left.png" x:Name="leftt"  Text="Glossary" />
                <shell:ApplicationBarIconButton IconUri="/Assets/home.png" x:Name="home"  Text="Home"/>
                <shell:ApplicationBarIconButton IconUri="/Assets/right.png" x:Name="right"  Text="February"/>
            </shell:ApplicationBar>
        </phone:PhoneApplicationPage.ApplicationBar>
    </phone:PhoneApplicationPage>
    xaml.cs : public partial class TabNav : PhoneApplicationPage
            public TabNav()
                InitializeComponent();
                VisualStateManager.GoToState(this, "Normal", false);
                // Sample code to localize the ApplicationBar
                //BuildLocalizedApplicationBar();
                //Touch.FrameReported += new TouchFrameEventHandler(Touch_FrameReported);
                // Set the data context of the listbox control to the sample data
                DataContext = App.ViewModel;
                // Sample code to localize the ApplicationBar
                //BuildLocalizedApplicationBar();
            private void OpenClose_Left(object sender, System.Windows.Input.GestureEventArgs e)
                var left = Canvas.GetLeft(LayoutRoot);
                if (left > -100)
                    ApplicationBar.IsVisible = true;
                    MoveViewWindow(-420);
                else
                    ApplicationBar.IsVisible = false;
                    MoveViewWindow(0);
            private void OpenClose_Right(object sender, RoutedEventArgs e)
                var left = Canvas.GetLeft(LayoutRoot);
                if (left > -520)
                    ApplicationBar.IsVisible = false;
                    MoveViewWindow(-840);
                else
                    ApplicationBar.IsVisible = true;
                    MoveViewWindow(-420);
            void MoveViewWindow(double left)
                _viewMoved = true;
                if (left == -420)
                    ApplicationBar.IsVisible = true;
                else
                    ApplicationBar.IsVisible = false;
                ((Storyboard)canvas.Resources["moveAnimation"]).SkipToFill();
                ((DoubleAnimation)((Storyboard)canvas.Resources["moveAnimation"]).Children[0]).To = left;
                ((Storyboard)canvas.Resources["moveAnimation"]).Begin();
            private void canvas_ManipulationDelta(object sender, ManipulationDeltaEventArgs e)
                if (e.DeltaManipulation.Translation.X != 0)
                    Canvas.SetLeft(LayoutRoot, Math.Min(Math.Max(-840, Canvas.GetLeft(LayoutRoot) + e.DeltaManipulation.Translation.X), 0));
            double initialPosition;
            bool _viewMoved = false;
            private void canvas_ManipulationStarted(object sender, ManipulationStartedEventArgs e)
                _viewMoved = false;
                initialPosition = Canvas.GetLeft(LayoutRoot);
            private void canvas_ManipulationCompleted(object sender, ManipulationCompletedEventArgs e)
                var left = Canvas.GetLeft(LayoutRoot);
                if (_viewMoved)
                    return;
                if (Math.Abs(initialPosition - left) < 100)
                    //bouncing back
                    MoveViewWindow(initialPosition);
                    return;
                //change of state
                if (initialPosition - left > 0)
                    //slide to the left
                    if (initialPosition > -420)
                        MoveViewWindow(-420);
                    else
                        MoveViewWindow(-840);
                else
                    //slide to the right
                    if (initialPosition < -420)
                        MoveViewWindow(-420);
                    else
                        MoveViewWindow(0);
    Thank you in advance and reply soon
    Jayjay john

    HI Joakins,
    It seems to very simple to solve you can use style based application bar like this,
    <phone:PhoneApplicationPage.Resources>
    <shell:ApplicationBar x:Key="groupAppBar"
    BackgroundColor="#EFF2F6"
    ForegroundColor="Black"
    IsMenuEnabled="True"
    Mode="Default">
    <shell:ApplicationBarIconButton x:Name="grp_attach"
    Click="Img_attach_Click"
    IconUri="/Assets/AppBar/attachbaritem.png"
    Text="attach" />
    <shell:ApplicationBarIconButton x:Name="grp_sticker"
    Click="sticker_Click"
    IconUri="/Assets/AppBar/teddybaritem.png"
    Text="sticker" />
    <shell:ApplicationBarIconButton x:Name="grp_Send"
    Click="ImgSend_Click"
    IconUri="/Assets/Chat/send.png"
    Text="send" />
    <shell:ApplicationBar.MenuItems>
    <shell:ApplicationBarMenuItem Click="btnGroupInfo_Click" Text="group info" />
    <shell:ApplicationBarMenuItem Click="btnMedia_Click" Text="media" />
    <shell:ApplicationBarMenuItem Click="btnDeleteGroup_Click" Text="leave group" />
    </shell:ApplicationBar.MenuItems>
    </shell:ApplicationBar>
    </phone:PhoneApplicationPage.Resources>
    And at code behind  use like this to show your appbar,
    this.ApplicationBar = this.Resources["groupAppBar"] as ApplicationBar;
    this.ApplicationBar.IsVisible = true;
    And for removing,
    this.ApplicationBar = null;
    Please mark this as answer if you get the solution by this answer.

  • MSCRM 2013 : Ribbon Command Bar enable/disbale on chang of selecting record?

    Hi,
    I'm working on requirement to enable or disbale the command bar button on the Ribbon ,Form and Record.
    I have a custom entity Sales Updates,  in that I need to do changes like
    1. Entity Ribbon(no record selected) then I have to show New,Export to Excel command buttons.
    2.Entity Ribbon(record selected) then I have to show/Enable Edit,Activate
    and Delete buttons.
    3.Record Opend then I have show/enable Save , Save and Close and
    New buttons.
    Above rules I need to implement based upon the security roles.
    Any help will be appreciated for the above.
    Thanks,

    That was actually 2013, not a few days ago. I have not been using the Access Web App as the project it was for went in another direction.
    BUT I will look back over my other forum posts about this to see if anyone got back to me with a fix.
    Jim Brown

  • Can't Create PDF from Microsoft Projects 2013

    I am trying to PDF a Microsoft Projects 2013 files.  I've tried print PDF and save as PDF but both options give me a pop up window that says "Creating Adobe PDF" with a progress bar displayed with 3 blue bars filled.  I leave it that way for about an hour and nothing happens.  I've tried updating the Adobe Acrobat and Repairing it in the Programs and Features menu.  Any help will be greatly appreciated.  Thank you.

    Thanks for the prompt response.  I don't know how to print-to-file and open the file in Distiller.  The printing as PDF doesn't even work.  It gives me the "Creating PDF" pop up window to which there is no end to. (see photo above)  As for updating to version XI, my colleagues who are running Acrobat X Standard with MS Projects 2013 do not have a problem at all when printing.  I want to avoid upgrading if version X is still usable.  Any other thoughts?

  • Issues using Project 2013 with SharePoint 2010

    I'm a SharePoint Admin and a few users have come to me with issues related to checking in Project 2013 files. The scenario they describe is this:
    Project 2013 file is saved and checked in to a document library
    User opens the file and selects edit from the dialog menu.
    The time the document is open varies, from a few minutes to over an hour
    User is logged in as [email protected]
    They can close the file, select check in, and update the file in the library
    Once they try to open the file again, they are given a message saying that the file is checked out to server\user and asks whether they want to view a read only copy
    Saving is disabled because it is read only
    If the user tries to close the file, they are given the option to check in the file
    Sometimes the file will check in and other times it will not.
    Has anyone run into issues like this before?

    Hi CjMOrr85,
    Second time when you open the project file, which option do you select. "Read-only" of "Check-out to Edit". If you are using "Check-out" option, you should not have any issues.
    Happy troubleshooting....
    Vikram Daruru - MSFT

  • Visio and Project 2013 silent install returns immediately (before install is finished)

    Hi,
    I am building a task sequence that will include Office 2010 ProPlus (volume license), a bunch of other products (like SQL Server and Visual Studio) and also Visio 2013 and Project 2013.
    For Visio 2013 and Project 2013, I have to use the retail media (this is for use in academic computer labs and we have a single retail key through DreamSpark Premium that allows unlimited activations - I don't know why DreamSpark doesn't just give a volume
    license key).
    I managed to get Visio 2013 and Project 2013 to install silently by modifying the config.xml file and using the /config parameter. However, when running my install script (the usual VBScript wrapper) or just from the command line, the command returns before
    setup finishes (literally within less than a second). Setup continues to run and finishes successfully, but as you can imagine, MDT considers that application install finished and tries to move on to the next application which fails because another installation
    is still in progress.
    I've included below the relevant portion of the VBScript wrapper. Any help in figuring out how to get the wrapper to wait for the installer to finish is appreciated.
    sSetupFile = oUtility.ScriptDir & "\Source\setup.exe"
    sArguments = "/config vispror.ww\config.xml"
    oLogging.CreateEntry oUtility.ScriptName & ": Starting installation", LogTypeInfo
    // Check for existence of setup file omitted
    iRetVal = oUtility.RunWithHeartbeat("""" & sSetupFile & """ " & sArguments)
    Coincidentally, iRetVal = 0 indicating success.
    Thanks,
    SA

    Hi SA,
    Obviously you use the VBS wrapper for some reason. To my understanding this behaviour needs to be captured and translated to "script is till busy, when installation completes script is finished, proceed to next step".
    I can only advise you to either try the command line directly in MDT, instead of using the VBS wrapper, and/or try to create an MSP and try this in your VBS wrapper, command line directly in MDT.
    MSP files are easily created by going into command prompt to the sources folder of Visio / Project and execute the following command: setup.exe /admin this will start the Office Customization Tool which enables you to create an MSP file.
    When you are ready, execute the following command to install the application with the settings in the MSP: setup.exe /adminfile custom.msp
    Again I can imagine the purpose of the VBS just as I can imagine the purpose of using the config.xml above a custom.msp. But for starters this should get you going to try to find an resolve where the issue lies. In the VBS or somewhere else.
    Cheers!
    If this post is helpful please click "Mark for answer", thanks! Kind regards

  • How to get standard Windows (7) title bars in Visual Studio 2013 Express?

    With the "title bar" background color changing when active vs inactive like all my other Windows.
    Using Win 7 in "Windows Classic" theme.

    Hi sponge_bob_128,
    >>How to get standard Windows (7) title bars in Visual Studio 2013 Express?
    Based on your issue, could you please tell me more detailed message about your issue.
    For example:
    (1)What did you would like to do in the Visual Studio 2013 Express?
    (2) If you want to develop a program like the "title bar" background color changing when active vs inactive from the VS2013 Express.
    Generally, I know that when we set the theme as "Windows Classic" theme on the Windows 7 and then start two VS windows, it will show an active VS window like the following screen shot.
    To further help you solve this issue, please tell me more detailed message for me.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Project 2013 Professional Trial

    I'm currently using Project 2013 Professional on trial and while following instructions in Microsoft Project 2013 Step by Step for creating a resource pool I found that I wasn't able to click on the "Share Resources..." option under the "Resource
    Pool" button on the "Resource" tab.  Is that because I'm on trial?  The option is not grayed out, it simply does nothing when I click it.

    I'm assuming you were able to successfully activate the trial?  Are all other commands working as expected?

  • Microsoft Project 2013 - Text under Task Names not formatting for Critical Path to different color (e.g. red)

    I am working with MS Project 2013 Professional
    I am trying to format the text for Critical Path items under the 'Task Name' column to stand out as red - but it does not seem to be working
    This is what I do - I go to "Format" tab,  "Text Styles" "Critical Tasks" and then set Color as red, click OK. The text does not change form the default black.
    Earlier, I had formatted the whole of that column "Task Name" as "Automatic Color" - that seems to have triggered this off
    See attached screenshot
    How can I fix this?
    Thanks
    HardCore Scheduler
    P.S. I couldn't find the answer to any similar question in this forum

    HardCore Scheduler --
    Your mistake was formatting the Task Name column with Automatic Color, as this overrides the setting in the Text Styles dialog.  Here is how to fix it:
    In the View section of the Task ribbon, click the Gantt Chart pick list button (drop-down arrow) and select the Reset to Default Item on the menu.
    Click the Yes button when prompted in a confirmation dialog.
    Widen columns as needed and scroll the Gantt Chart pane back to the beginning of the project.
    Click the Format tab to display the Format ribbon.
    Select the Critical Tasks checkbox in the Bar Styles section of the ribbon.
    Click the Text Styles button in the Format section of the Format ribbon.
    In the Text Styles dialog, click the Item to Change pick list and select Critical Tasks.
    Set the Color pick list to Red and then click the OK button.
    This should display what you want to see.  Hope this helps.
    Dale A. Howard [MVP]

  • Project 2013 - Gantt Chart Printing/PDF issues

    Hello,
    I will try and explain this strange issue best I can - I am having some issues with creating a PDF from Gantt Chart view. The main problem here is when printing to PDF it seems to modify my Gantt at will as soon as i hit print preview. When I return to the
    Gantt I created it is very much the same as before; here are the issues:
    When Linking tasks or summary tasks (marked as milestones) to the other summary tasks (also marked as milestones) with an FS task dependency: The Gantt in Project displays an arrow linking the finish of the predecessor to the start of the linked summary
    task as would make sense. Once I hit print preview this arrow is now moved to point from the finish of the predecessor to the milestone located at the end of the linked summary task. A simple work around has been to not mark the linked summary task as a milestone
    (the predecessor can be, this doesn't seemmatter); the print preview then matches the Gantt I created.
    When hitting print preview the task list stays in tact but the Gantt Chart displays very unusual colors (Deadline arrows become vibrant green), components of the legend become invisible, and task bars become invisible as well. The problem is very sporadic
    and comes and goes as it pleases. 
    Any thoughts?
    Regards,
    Chris

    Gentlemen,
    I am working with Project 2013 - I have the latest service pack installed.
    I found another way to accomplish what i needed/wanted with the milestone - that is not my main issue here.
    I have seen other forum posts with the same issue regarding Phantom Gantt bars and strange colour issues when creating a PDF. I can send you screen shots if you'd like of the results. The problem comes and goes and nobody seems to have any solution for it.
    I just need my print preview to match what I have created in the project, and then for my PDF to match the print preview.
    Regards,
    Chris

  • Trying to make a disc.img from an iMovie project get the mssage that some of the audio clips are not available. The clips still show as green bars in the project but do not play.

    I successfully made a disc.img and then burned a DVD of the project but found an error in a title. Went back to the project, corrected the error, and tried to create a new disc.img but got the message that some of the audio tracks were unavailable. They still show as green bars in the project but do not play. Tried deleting and reinstalling them with no success. They do play in iTunes and in the iMovie editing pane
    Thank you

    inspired2apathy wrote:
    ... The goal is a ScrollPane that automatically wraps the text inside it. I've just about got it, but I have one thing that's not working. If I just put the JTextArea{s} in as the Editor, then you lose the any text that doesn't fit inside whatever the initial size was. Instead, I put the JTextAreas inside a JScrollPane which works fine, except that I still have to determine the size of the JScrollPane in advance. I would like to make each Editor/JScrollPane start out with just a single line of text and expand until it reaches a certain small number of lines.
    ... What am I missing?THE BASICS. See if this isn't what you are trying to do.
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    public class Test
      public static void main(String[] args) {
        JTextArea ta = new JTextArea();
        ta.setLineWrap(true);
        ta.setWrapStyleWord(true);
        JScrollPane sp = new JScrollPane(ta);
        JFrame f = new JFrame();
        f.getContentPane().add(sp, "Center");
        f.setBounds(0, 0, 400, 300);
        f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);
        f.setVisible(true); 
    }OP, your code was too long and complicated for me to compile and run. However, aren't you forgetting the two simple methods <tt>JTextArea.setLineWrap()</tt> and <tt>JTextArea.setWrapStyleWord()</tt>? Furthermore, I absolutely see no need for you to extend SWING components for demonstration this simple -- that is, if I understand your problem correctly.

  • App-V 5.0: Adding Visio 2013 and Project 2013 to a previously deployed virtual Office 2013

    Good morning.
    I can successfully deploy Office 2013 via PowerShell and App-V v5.0 without difficulty.  I've read the document at
    http://support.microsoft.com/kb/2915745/en-us and followed all instructions successfully.
    My question is this:  If Office 2013 without Visio 2013 or Project 2013 is virtually deployed, how can those components be added later?
    For instance, we may have 100 users that acquire a virtualized Office 2013 without Project or Visio.  We then may have 25 users that require a virtualized Office and Visio without Project and, perhaps, another 15 that require Office and Project without
    Visio.
    Currently, when I attempt a second virtual deployment of one of these components, it removes Office 2013 making it inaccessible.
    How can Project and/or Visio be deployed to an already existing virtually deployed Office 2013?
    Thanks very much.
    John
    IAmStrings

    As a part of MDOP, you'll also have access to UE-V which will provide a mechanism of moving user preferences across the same applications from difference packages.
    It will require planning, configuration and deployment, but will ensure you don't face the same issue in the future.
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or click "Unmark as Answer" if a marked post does not actually
    answer your question). This can be beneficial to other community members reading the thread.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V

  • Project 2013 APP-V Plugin

    Hi,
    I have a Project 2013 APP-V package created and published successfully. Now I have a requirement from user to add a plugin for Project 2013.
    I don't want to make this plugin to be available to all users. Any solutions?
    I thought of creating a connection group for the individual project 2013 which is already published to this add in but I think I am confusing app-v here and it installs and uninstalls simultaneously.
    Is there any possibility to create a connection group with the same package which is published individually?
    Regards,
    Chetan.T.V

    What version of App-V do you use? If 5.0 SP3, then take advantage of a new feature - having optional packages in a connection group. Create a connection group that contains your existing Project 2013 package and add the add-on package (if you haven't created
    a package yet, do that) as an optional package. Publish Project 2013 and the connection group to everyone that should get it and publish the add-on package only to the users who need it. That should work.
    Regards, Michael - http://blog.notmyfault.ch -

  • Project 2013 - entering work hours at a monthly level

    Hi all, 
    Any help with this 'hopefully small' problem will be hugely appreciated. It's not so much a problem, but
    me still being new to Project - sorry! As a summary of what I am working with:
    I have entered a list of tasks (all set to Manually Scheduled).
    I have entered a number of resources into the Resource List. 
    I have also assigned relevant resources to the tasks. 
    Using the Task Usage view, I would now like to begin entering Work hours for the resources assigned to the
    tasks. We are planning at a monthly level, so I know how many hours each resource is expecting to be spending on each task over each month. 
    I have set the Timescale of my Task Usage screen to a monthly scale, thinking that this would allow me to
    enter total hours for each month. As an example, one of the resources assigned to a task is set for 15 hours of Work in April. It all seems to look OK on input. 
    My problem is however, I would like the Start and Finish fields to reflect this, and span over the months
    in which the Task's resources will be doing work. It doesn't seem to pick up the month accurately. Although I have entered the 15 hours in the column labelled April, the Start and Finish dates have come out as 30/04/14 and 30/05/14 respectively. I was hoping
    the Start and Finish times of that row to be 01/04/14 and 30/04/14 respectively, but they are a month out of line, and has show the work to be happening over May, not April. Is there y way I can change this?
    I hope this makes sense as a question? Any help at all would be brilliant. Please do let me know if I've
    missed any detail and you need some more info. I'll also continue looking through the forums to check if this has already been asked. 
    p.s. I tried to upload an annotated image, but my account needs to be verified first. Do I need to do anything to request this? I didn't receive any usual 'verification' links in MS's email on opening this account.
    Thanks very much, 
    ac18

    Hi John, Julie,
    Thank you both very much for the help! Yes good spot, I did post it on both forums (http://www.msofficeforums.com/project/21190-project-2013-entering-work-hours-monthly-level.html) - it's been years since I've used forums of any kind, and it's great to see
    experts being active across multiple sites! 
    I have given both suggestions a try, but unfortunately am still not quite there yet. 
    John, although your tip seems to work OK, I think I was hoping to find a way for the Start and Finish times to automatically span across the Work hours I have entered. If I was to then enter another 5 hours, but this time for March, the Start-Finish dates
    should auto update to be 01/03/14 - 30/04/14. I understand now that this may require me to be on an Automatically Scheduled project? 
    Julie, your screen shot on the msofficeforums.com website is exactly what I am looking to achieve! I would like to enter month-level Work data, and that looks to be exactly that. I did try entering a zero in the month immediately after the last month that
    had hours in it, but Project seemed to simply ignore it, with no visible change to the dates. 
    I have done some further investigating, and there does seem to be something different happening with my Project version (it's Proj Prof 2013). I have access to another computer with Project 2010 installed on it, and this doesn't seem to cause an issue. Note,
    I did need to have set the tasks as Auto Scheduled. 
    Essentially, if I try and exactly replicate Julie's example on both versions with the following steps, I get slightly different results:
    Tasks set to Auto-Scheduled. 
    Set Project Start Date to 01/01/14
    Enter some resources. 
    Switch to Task Usage view. 
    Set the Timescales on the right hand side to: Bottom tier=Months, Middle tier=Quarters. 
    Enter a task. 
    Assign resources to the task. At this point, by default 8 hours worth of work appears for each assigned resource. In 2010, these hours appear in the January 14 column. But on my 2013 laptop however, these hours appear under the December 2013 column. Strange?
    Anyway, in both cases I clear these default hours by entering zeros in their places.
    I now enter 15 hours under April 2014 for one of the resources on the task.
    In 2010, the Start and Finish dates of the assigned resource's row update to 01/04/14 - 30/04/14.
    In 2013 however, the Start and Finish dates update to 30/04/14 - 30/05/14. 
    I have a feeling that this discrepancy is perhaps at the heart of my problem? Is there a setting with the application that I am not making?
    Thanks again, 
    Arjun

  • Acrobat XI no longer works after installing Project 2013

    Hello All,
    This one is really odd and I can't find any documentation anywhere.  I have a client that has Office 2010 and Acrobat XI Standard.  I just installed Project 2013 on the machine and now right clicking on any Office file will not show the option
    to create PDF.  He can right-click on a Project file and create one but not on any other Office file.  I have never seen this before.  Any thoughts?
    Regards,
    Rob Battaglia

    Yes I have - no luck.  This system is using Office 2010 x64 and Project 2013 x64.  This all happened after installing Project.  The right click on a file works for Project just not for Office.  I did check to make sure the add-in was
    present for both Excel and Word - PDFMaker.dll is selected in both and the user can create PDF files from within Word and Excel - just not when right-clicking on the file in Windows Explorer.
    Regards,
    Rob Battaglia

Maybe you are looking for

  • While burning a disc using CD-R, medium error during burn

    Using blank CD-R to burn photos from a named file, the burn stops and an erroe message occurs "Medium write error"???

  • Windows 8.1 will not install the driver for Officejet 6310 All-in-One

    Have downloaded the driver from the HP website, but it will not install. The download wizard "detected a problem with the driver software" but did not say how to resolve it. The option to download the software was still available, so I did that anywa

  • Ipad only uses one file name when uploading images via email

    We have an image tool that uploads images to a template website. The problem is the file names for these images must be unique any duplicate file names will be rejected. Some of our users want to be able to upload from the field but Ipad only assigns

  • Trouble shooting links

    I have a 108 page catalog document. One spread's links aren't viewing. There are many color swatches and multiple product images placed on that page I really don't want to have to rebuild the two pages. Links appear in the links pallet as updated. I

  • Viewing Application

    I'm extremely new to Java, and I am having problems viewing my simple application after making it. I made it in Sun ONE Studio 4, and it runs fine within it, but when I try double clicking on the class file from windows explorer (win2000), nothing ha