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.

Similar Messages

  • How to disable App tabs (pined tabs) from being started automatically?

    how to disable App tabs (pined tabs) from being started automatically?
    because the option [Don't load tabs until selected] dose not work with it, and it keeps starting every time when I restart Firefox.
    Please help me!

    Don't bother, I reached to the solution by my self, you can do it as following:
    Type "about:config" [ without quotation marks! ] in the Location Bar (address bar) and press Enter to display the list of preferences, as shown in the picture '''#1''' in Firefox 17 on Windows 7.
    If you see a page with the warning message as shown in picture '''#2''', This might void your warranty!, click the button labeled "I'll be careful, I promise!", to continue (in fact, there is no warranty whatsoever, it's more a joke to ensure that users are aware of what they are about to do). uncheck the check-box there to avoid the warning in the future.
    Now at the search bar in the picture '''#3''' type: ''tab'' and look for the
    '''preference name:'''
    browser.sessionstore.restore_pinned_tabs_on_demand
    or you can '''copy''' it directly to the search bar,
    '''Next,''' follow the instruction in picture '''#3''' .
    Just in case if the pictures didn't appear, do ''these steps'':
    '''First:''' Right click at the preference name that we searched for.
    '''Next,''' click Toggle to change the value from false to true.
    '''Or,''' double click on it and it will change.
    '''Finally,''' restart Firefox and you will notice that they don't load automatically until you click on it.
    That's it, Good luck to all. ''';-)'''
    '''Note''': The bolded font preferences list is the user modified, and the un-bolded is the default setting.
    '''Warning''': Modifying preferences can, in rare circumstances, break Firefox, Thunderbird or the Mozilla Suite, or can cause strange behavior. Only do so if you know what you are doing or are following trustworthy advice.
    Additional INFO:
    about:config is a feature of Mozilla applications which lists application settings (known as preferences) that are read from the profile files prefs.js and user.js, and from application defaults. Many of these preferences are not present in the Options or Preferences dialog. Using about:config is one of several methods of modifying preferences and adding other "hidden" ones.

  • How to disable App Caching in 10.9

    Hi All,
    As much as I think that the new memory management system in OS X 10.9 is a very nice idea, it really doesn't work for me because I have Virtual Machines stopping and starting and the despite the fact that they are only trying to pull 512MB each, the system just can't handle pushing that much to them.
    Is there a way to disable this app/file caching and get back to something more to the style of the old memory management system - I really want to have FREE memory available for when I actually need it - I really don't care if free memory is wasted memory, free memory is what works for me
    I have a Mid 2009 13" MBP with a 2.2Ghz Intel Core 2 Duo with 8GB of RAM
    Any help would be greatly appreciated, I can't bear my system grinding to a halt with several servers running in the background - the sort of thing that it could handle just fine under 10.8 - also, downgrading is not an option for me!

    leroydouglas wrote:
    Does this address your issue.
    http://www.cnet.com/how-to/how-to-disable-app-nap-in-os-x-mavericks/
    Unfortunately, no - App Nap only applies to running applications, and saving processing power and thus energy, whereas the app preloading is all about being clever about which files are in use and keeping as many as possible crammed into the memory.
    However, disabling app nap is a useful thing to know, thanks!

  • 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]"

  • How to disable App Nap in latest MacOS by default?

    As mentioned in AIR 3.9 release AIR now supports App Nap feature in latest MacOS (http://forums.adobe.com/message/5745066); but I'm not able to found any documentation on whether AIR provides any in-build feature/code to enable/disable App Nap while compiling or not. Is this an application behavior feature that AIR now supports, or AIR is providing any way to enable/disable this feature while compiling?
    Thanks!

    Can anybody suggest on this? We want to support 'prevent app nap' by default through our binaries. Please, suggest.

  • How to disable APP and change default program in registry

    Dear all,
    it is possible to disable all the app (that appears in the start screen) in Windows 8.1?
    Our users are a little bit confused and we prefer to use the old program (example Windows Photo Viewer and not Photos APP).
    Let me know if it is possible and how to do it.
    If yes, where we can edit the registry key to make the default program Windows Photo Viewer? And other programs? We would like to set Windows Photo Viewer as default app on all our computer in domain. It is possibile to edit this setting in registry?
    And not manual from GUI? 
    Our PC are in a domain.
    Thank you,

    Hi,
    According to your description, you want to open the file without using metro app.
    We don't need to disable all metro app.
    You can use the Deployment Image Servicing and Management (DISM) tool to change the default programs associated with a file name extension.
    1.Deploy your Windows image to a test computer.
    2 Log into Windows and use Control Panel to configure your default application associations.
    3.You can export the default application associations that you have configured to an XML file on a network share or USB drive. For example, at a command prompt type the following command:
    Dism /Online /Export-DefaultAppAssociations:\\Server\Share\AppAssoc.xml
    4.Use GP server to enable the following group policy to modify the default Associations on the client machine.
    Computer Configuration>Administrative Templates>Windows Components>File explorer>Set a default associations configuration file.
    Regarding how to export or Import Default Application Associations,please refer to the following article:
    http://technet.microsoft.com/en-us/library/hh825038.aspx
    Regards,
    Kelvin hsu
    TechNet Community Support

  • How to disable apps from auto-refreshing?

    I've got an iPad 2 with the latest iOS on it.  Except for one annoying bit of behavior, I love it.  What is so irritating is how iOS seems to refresh an app if you leave it and then return.  A case in point:  I use Zite to read news of all sorts.  Quite often I'll click a link in a Zite article, which then opens Safari or the iTunes store, or some other app.  After I complete my business in the second app, I double-click the home button and select Zite to continue.  iOS will cause Zite to go through a refresh cycle and I wind up on page 1 rather than within the article I was reading.  This means I have to swipe through any number of pages to find the original article, which is made more difficult because Zite, on refresh, has reordered articles and added new ones to the mix.
    This is not unique to Zite though this is the app where I notice it most.  I have found that returning to Safari after using another app will cause Safari to refresh and occasionally not display the page I was visiting immediately, causing me to retrieve the history.
    Is there any setting anywhere that will disable this?
    Thanks for any advice,
    -Tod

    I do not believe there is a way.  You can disable the camera in restrictions that would prevent access to the camera but then you would not be able to use it either and you would need enable the camera again in restrictions if you wanted to use it.

  • How to disable app updates

    How can I disable the app updatesnotifications?  I usually update all the apps when ever I get an update notification, but if I get a lot of apps to update and i try to update them all, i get a message that says I don't have enough space to update all. I then have to go through and hand pick which ones to update or deleate some. The updates just continue to pile up and I have to pick and choose again. Is there a way to disable the app updates all together or would thst cause the apps to not work correctly?

    Is there a way to at least hide the update notification number that just keeps increasing if you can't update them all to get rid of it?

  • How to disable menu bar and dock when playing a full screen game? Like sims 4

    i play sims 4 on my MacBook pro and if I go to close to the bottom of the screen or the top the menu bar or dock pops up I was wondering if there is A program or a setting I can use to disable that while in something full screen or gaming

    The game itself should already have the option for full screen. But you can go to system preferences dock and check the hid dock option. Then you would have to go to the very edge of the screen to get the dock to reappear.

  • How to disable status bar messages

    hi,
    while loading a form or running the forms applications, forms applet writes log to the status bar of internet explorer.
    i want to disable some of these messages. because i am listening status bar, for a specific message and these messages causes performance problem.
    is there a way to do it?
    regards , Engin.
    here are the messages i logged :
    Finding site: 10.222.4.51
    Connecting to site 10.222.4.51
    Connecting to site 10.222.4.51
    Start downloading from site: http://10.222.4.51:8000/forms/frmservlet?config=tfs
    Opening page http://10.222.4.51:8000/forms/frmservlet?config=tfs...
    Opening page http://10.222.4.51:8000/forms/frmservlet?config=tfs...
    Opening page http://10.222.4.51:8000/forms/frmservlet?config=tfs...
    (2 items remaining) Opening page http://10.222.4.51:8000/forms/frmservlet?config=tfs...
    Opening http://10.222.4.51:8000/forms/java/frmwebutil.jar
    Opening http://10.222.4.51:8000/forms/java/frmall_jinit.jar
    Opening http://10.222.4.51:8000/forms/java/frmall_jinit.jar
    Opening http://10.222.4.51:8000/forms/java/frmwebutil.jar
    Opening http://10.222.4.51:8000/forms/java/frmwebutil.jar
    Opening http://10.222.4.51:8000/forms/java/jacob.jar
    Opening http://10.222.4.51:8000/forms/java/jacob.jar
    Opening http://10.222.4.51:8000/forms/java/tfsbeans.jar
    Opening http://10.222.4.51:8000/forms/java/tfsbeans.jar
    Opening http://10.222.4.51:8000/forms/java/tfsimage.jar
    Opening http://10.222.4.51:8000/forms/java/tfsimage.jar
    Opening http://10.222.4.51:8000/forms/java/jai_imageio.jar
    Opening http://10.222.4.51:8000/forms/java/jai_imageio.jar
    Opening http://10.222.4.51:8000/forms/java/clibwrapper_jiio.jar
    Opening http://10.222.4.51:8000/forms/java/clibwrapper_jiio.jar
    Opening http://10.222.4.51:8000/forms/java/jacob.jar
    Opening http://10.222.4.51:8000/forms/java/jacob.jar
    Applet loaded.
    Applet initialized.
    Applet started.
    Opening http://10.222.4.51:8000/forms/java/tfsbeans.jar
    Opening http://10.222.4.51:8000/forms/java/tfsbeans.jar
    Opening http://10.222.4.51:8000/forms/java/tfsimage.jar
    Opening http://10.222.4.51:8000/forms/java/tfsimage.jar
    Opening http://10.222.4.51:8000/forms/java/jai_imageio.jar
    Opening http://10.222.4.51:8000/forms/java/jai_imageio.jar
    Opening http://10.222.4.51:8000/forms/java/clibwrapper_jiio.jar
    Opening http://10.222.4.51:8000/forms/java/clibwrapper_jiio.jar
    Opening http://10.222.4.51:8000/forms/java/java/awt/KeyboardFocusManager.class
    Opening http://10.222.4.51:8000/forms/java/java/awt/KeyboardFocusManager.class
    Applet loaded.
    Applet initialized.
    Opening http://10.222.4.51:8000/forms/java/java/awt/event/MouseWheelListener.class
    Opening http://10.222.4.51:8000/forms/java/java/awt/event/MouseWheelListener.class
    Opening http://10.222.4.51:8000/forms/java/oracle/forms/registry/Registry.dat
    Opening http://10.222.4.51:8000/forms/java/oracle/forms/registry/Registry.dat
    Opening http://10.222.4.51:8000/forms/java/oracle/forms/registry/default.dat
    Opening http://10.222.4.51:8000/forms/java/oracle/forms/registry/default.dat
    Opening http://10.222.4.51:8000/forms/frmservlet?config=tfs&acceptLanguage=en-us,tr;q=0.5&ifcmd=startsession
    Opening http://10.222.4.51:8000/forms/frmservlet?config=tfs&acceptLanguage=en-us,tr;q=0.5&ifcmd=startsession
    Opening http://10.222.4.51:8000/forms/lservlet;jsessionid=0ade042330d69eb05aec84b344128245ca217665e6c7.e3eNc3iPc3j0ax4LbNeKaxqKci1ynknvrkLOlQzNp65In0?ifcmd=getinfo&ifhost=EDP12PC58&ifip=10.222.12.58
    Opening http://10.222.4.51:8000/forms/lservlet;jsessionid=0ade042330d69eb05aec84b344128245ca217665e6c7.e3eNc3iPc3j0ax4LbNeKaxqKci1ynknvrkLOlQzNp65In0?ifcmd=getinfo&ifhost=EDP12PC58&ifip=10.222.12.58
    Opening http://10.222.4.51:8000/forms/lservlet;jsessionid=0ade042330d69eb05aec84b344128245ca217665e6c7.e3eNc3iPc3j0ax4LbNeKaxqKci1ynknvrkLOlQzNp65In0
    Opening http://10.222.4.51:8000/forms/lservlet;jsessionid=0ade042330d69eb05aec84b344128245ca217665e6c7.e3eNc3iPc3j0ax4LbNeKaxqKci1ynknvrkLOlQzNp65In0
    Opening

    First off that's what's called a kernel panic and it's the most extreme software problem as the kernel itself is malfunctioning which everything else depends upon.
    It's rather easy to resolve, there are usually two causes for it, outdated software or a problem with OS X itself like it lost part of itself somehow on the drive.
    So instead of disabling it which you can't as the operating system is basically frozen (not all of it of course) you should just fix it up really quick and all is well.
    Depending upon what operating system the machine has gives you different options to #8 Resinstall Just OS X over itself to fix issues in OS X, and with third party "hooks" called kernel extension files (kexts) that some software place into OS X itself.
    So you do that here and it won't delete programs or files, but any program with a kext file in OS X is removed by the overwrite process.
    So do #8 here and other Steps as you see fit to fix the machine.
    ..Step by Step to fix your Mac
    Of course doing so is going to make some software not work, so you have to check to make sure before you reinstall certain software that it's been updated and works fine with the current OS X verison.

  • How to disable app suggestions?

    My devices keep offering it to me to download and install whenever I open the app store to do updates.
    I do not want the apple beats app. I do not listen to music on my phone or ipad. The app would just take up space I could use for photos or other things. It wastes my storage space. These notices are really annoying. How do I tell the app store I do not want this silly app and to stop offering it to me?

    Setting>iTunes & App Store>Suggested Apps>App Store>Off.

  • How to disable address bar / location bar in mozilla ff 3.6.13 for all users

    i am a domain administrator and want that all the domain users should only b able to view whatever i want them to... so that they can't enter any url in the address bar. i also want them to restrict using tools -> options because by changing the homepage they can still open their desired site/ url..... can any one can help......
    thnx in advance

    i also wana add that i tried view -> toolbars -> but it is only for the user currently logged in...

  • How to disable status bar from creating a dead zone in the simulator

    Is this a known bug in the simulator,where a hidden status bar is still grabbing touches? I constantly get frustrated by the inability to click at the top 20 or so pixels of the screen because that is a dead zone, and even though I have a hidden status bar the status bar is still grabbing touches there. Any way around this? And will this happen in the iPhone version, or is it just the simulator?

    You have a point, if your users are filling the form in with Reader, they won't be able to save the data with the form unless the form has been "Reader Extended" (which enables this functionality in Reader for the particular form)
    If you have Acrobat Pro, you can "extend" the form before you send it to the users.  The following is from the Acrobat Pro help...
    Enable Reader users to save form data
    Ordinarily, Reader users can’t save filled-in copies of forms that they complete. However, you can extend rights to Reader users so they have the ability to do so. These extended rights also include the ability to add comments, use the Typewriter tool, and digitally sign the PDF.
       1. Open a single PDF, or select one or more PDFs in a PDF Portfolio.
       2. Choose Advanced > Extend Features In Adobe Reader.
    These extended privileges are limited to the current PDF. When you create a different PDF form, you must perform this task again if you want to enable Reader users to save their own filled-in copies of that PDF.
    Regards
    Steve

  • How to disable app from opening into full screen mode

    Dear all I'm on OSX 10.8.4 and every time i start an app it'll go to full screen even after quiting it and opening the app again. Is there a way to stop this from happening

    Full-screen mode is controlled by you. If you take it OUT of full-screen mode (go to the very top right of the screen, wait for the menubar to drop down, click the blue inward-facing arrow icon), and THEN quit the app, it will remember the preference and open in normal windowed-mode next time.
    Matt

  • How to disable tab bar in Safari on iOS 5

    I can't find the setting for this. Is it hidden somewhere?

    Pure88 wrote:
    The only problem with safari under iOS 5 is when you have 9 tabs opened (which is often the case for me) you don't find anymore which is the right tab when you come back, while under iOS 4 it was far more easier thanks to the picture of the page.
    Fair point, but it obviously now makes sense keeping fewer pages open. This is now easy to do as you can just add them to 'Reading List' so you can return to them later and since the Reading List syncs to your other devices they are available anywhere you might be browsing which HAS to be a plus.
    I realise that the Reading List is just a list of bookmarks and doesn't actually store the page itself, whereas an open tab does - in theory. On many, many occasions I have switched to an open page (now Tab) and had to wait while the page was retrieved again. I don't understand why it does this since the page had already been downloaded and I hadn't asked it to 'redraw'. Also, it doesn't always occur. So why does it refetch some pages and not others? Anyway, if it is re-fetching the page, that is no different from just opening a bookmark and hence in that case storing something in the Reading List would be no different to keeping the page apparently open in another screen.
    On the whole I do prefer the new Safari and from the reviews I've read, it seems that most others do also. In any case, there's no point wishing for the old behaviour as it's surely gone for good. Better to embrace the new way of working and learn to love that, so when they change to something else in iOS 6, you'll have something to complain about.

Maybe you are looking for

  • Std Work flow for Invoice Parking & posting

    I am working om std SAP workflow for invoice document parking : I have done the following activities : 1. Activate Work flow Template for Document Completion Here i activated the event "Complete the Parked Log. IV Document"--> Incoming Invoice Docume

  • Uploading of image to the database?

    Hi all, how do we bring up a File browser window on oracle form and upload a pic to the database? Can someone show me how they will create a simple db to store image, and the file browser window method?

  • Problem with 6.1as an NT Service

    My EJB server runs successfully under WL 6.0, including as an NT Service. After migrating to WL 6.1, and getting it to run successfully from the command line, I find I have a problem running it as an NT Service. Although my path requirements have not

  • Oracle 10gR2 and jdk 6

    helo... i am new to both oracle and java. i would like to use jdbc in oracle. is it possible if i use oracle 10g database with jdk 6 as a paltform to write a program then load it to oracle using loadjava. or do i need to change my jdk version to 1.4?

  • How do I move my home videos to Movies from the TV Shows category in iTunes?

    In itunes on my iMac, most, but not all, of my home videos and homemade slide shows have been saved in the TV shows directory rather than the movies directory.  I've tried to move them to the movies directory in iTunes, but they won't be moved.  How