Reduce the size of the screen, which had been enlarged.

Wishes to reduce the DPI scale but when I go into this feature can't see the section that allows the user to apply your changes because the screen is so big cannot display this option. Which means that I am unable to make this change. Don't like the custom DPI that I'm unable to change the scale. Help!

Use the ENTER key to apply.

You can also use the Tab key to navigate down.

See you soon.

Mick Murphy - Microsoft partner

Tags: Windows

Similar Questions

  • What happened to the button on the address bar which allow you to see the pages you had been so that you don't have to click the back button several times? I use it all the time and it is not on FF4.

    What happened to the button on the left end of the address bar which allow you to see the pages you had been so that you don't have to click the back button several times? You can look at the drop down window of pages and just choose whatever you want. I use it all the time and it is not on FF4. I want to go back to the old FF.

    If you right click on your back button, or click and hold down the mouse button, it will display the list. (I prefer a click-right, because sometimes my fingers slide when I try to click and hold)

  • bar lost at the top of the screen which selects the tasks.

    I need help to find the bar at the top of the screen which selects the tasks,
    Lost tools, page ect.on middle right side of the screen, Help!
    E-mail address is removed from the privacy *.

    Do you have a Dell?

    If so, look in start all programs > under Dell software

    http://www.DellDock.com/

    Alternatively, download it.

    Other brands of computer are similar things.

    Check in their software or their Web site.

    See you soon. Mick Murphy - Microsoft partner

  • I have two accounts in Apple Mail. Mailed to some documents from one to the other. When I received the email, it had been sent to about 30 people from my Contacts. How could it happen? I have never create a distribution list.

    I have two accounts in Apple Mail. Mailed to some documents from one to the other. When I received the email, it had been sent to about 30 people from my Contacts. How could it happen? I have never create a distribution list. MBP OS 10.11.4

    Open the "sent" folder on the account that you mailed to and look at the message that you sent it to see.

    You have email of the accident to a group? You have a group created in the application of Contact with these names? Or maybe that you click on reply to all to create the message?

  • Reduce the screen resolution/size

    Hello

    I upgraded from XP to Windows 7.  During the upgrade, I'll sort my screen size 640 x 480. This makes everything on the huge screen.  You can see from the page at any time.  I tried to reset it, under the resolution of the screen, but it is grayed out.  The driver for the monitor is a generic Microsoft & I can't find the original for the monitor (gateway 19 ") driver.  Any ideas?

    Thank you

    On Sunday, February 9, 2014 14:40:15 + 0000, MiaNelson wrote:

    Hello

    I upgraded from XP to Windows 7.  During the upgrade, I'll sort my screen size 640 x 480. This makes everything on the huge screen.  You can see from the page at any time.  I tried to reset it, under the resolution of the screen, but it is grayed out.  The driver for the monitor is a generic Microsoft & I can't find the original for the monitor (gateway 19 ") driver.  Any ideas?

    You need the Windows 7 driver for your video card, not for your
    monitor. Go to the website of the manufacturer of the video to watch card
    for this.

    Or, if you have a video on motherboard instead of a separate video card
    get the web site of the manufacturer of your computer.

  • Camera does not work after you reduce the screen brightness

    Hello

    I have an application that uses the camera in QML. It works fine, but if the screen fades while my application is open the camera no longer until I restart the application.

    Here is the page of qml any camera:

    import bb.cascades 1.0
    import bb.cascades.multimedia 1.0
    
    /**
     * Most of this code was copied from:
     * https://developer.blackberry.com/cascades/documentation/design/camera/taking_a_photo_with_the_front_...
     */
    
    Page {
        property string pictureLocation: ""
        function closeCamera() {
            createReportNavigationPane.cameraClosed(pictureLocation)
            pictureLocation = "";
            saveID.enabled = false;
            sheetCamera.close();
        }
        titleBar: TitleBar {
            acceptAction: ActionItem {
                title: qsTr("Save")
                id: saveID
                enabled: false
                //title: "Save"
                onTriggered: {
                    closeCamera();
                }
            }
    
            // The 'Cancel' action
            dismissAction: ActionItem {
                title: "Cancel"
                onTriggered: {
                    pictureLocation = "";
                    closeCamera();
                }
            }
        }
        onCreationCompleted: {
            // Check to see if any cameras are currently accessible.
            if (camera.allCamerasAccessible) {
                // Open the rear camera.
                camera.open(CameraUnit.Rear);
                camera.isOpen = true
            }
        }
        Container {
            layout: DockLayout {
            }
    
            // The Camera object.
            Camera {
                id: camera
                preferredWidth: 768
                preferredHeight: 1280
                objectName: "camera"
                property bool photoBeingTaken
                property bool isOpen: false
                onTouch: {
                    if (event.isDown()) {
                        if (photoBeingTaken == false) {
    
                            // Take a photo, and automatically
                            // save it to the file system.
                            camera.capturePhoto();
                        }
                    }
                }
    
                // The following are examples of slots that can
                // be used with the Camera object to handle
                // the various signals that are emitted.
                onCameraOpened: {
                    // Once the camera is open, start the viewfinder.
                    camera.startViewfinder();
                }
                onCameraOpenFailed: {
                    console.debug("Camera cannot open");
                }
                onViewfinderStarted: {
                    console.debug("Viewfinder has been started");
                    photoBeingTaken = false;
                }
                onViewfinderStartFailed: {
                    console.debug("Viewfinder could not be started");
                }
                onPhotoCaptureFailed: {
                    console.debug("Photo could not be taken");
                    photoBeingTaken = false;
                }
                onPhotoSaveFailed: {
                    console.debug("Photo could not be saved");
                    photoBeingTaken = false;
                }
                onPhotoSaved: {
                    saveID.enabled = true;
                    photoBeingTaken = true;
                    console.debug("Photo has been successfully saved");
                    photoBeingTaken = false;
                    console.log(fileName);
                    pictureLocation = fileName;
                    var imageName = pictureLocation.substring(pictureLocation.lastIndexOf("/") + 1);
                    var imagePath = "/accounts/1000/shared/camera/" + imageName;
                    cameraPreview.imageSource = app.getCameraPreview(imageName, imagePath);
                }
            }
            Container {
                layout: StackLayout {
                }
                leftPadding: 10.0
                topPadding: 10.0
                Container {
                    preferredHeight: 200
                    preferredWidth: 200
                    horizontalAlignment: HorizontalAlignment.Left
                    Container {
                        verticalAlignment: VerticalAlignment.Center
                        ImageView {
                            id: cameraPreview
                            verticalAlignment: VerticalAlignment.Fill
                            horizontalAlignment: HorizontalAlignment.Fill
                            scalingMethod: ScalingMethod.Fill
                        }
                    }
                }
            }
        }
    }
    

    Thank you

    Gerry

    so, there is a signal of cameraResourceReleased which you can listen to that will tell you that the camera has been arrested.

    After that, you can restart the viewfinder after your application is in the foreground.

    We have a corner case that we are still working on what centers around the case when the screen starts to close (causing the camera to stop), but the user he wakes up before the browser tells your application in the background.  In this case, you may not receive a leading event.  You can probably work around this case by launching a timer and check, after a second or two, if the application has been deleted original or not... If it is still in the foreground, then you could try restart the viewfinder

    See you soon,.

    Sean

  • My screen seems to have gone out.  Everything worked well then there black and white vertical lines on the screen.  Had to make a hard stop, bury ashes hold the power button. Now no display

    does that mean if my screen on m MBP15 inches starting to show black and white vertical lines and will not again after that I tried to restart my computer?

    This looks like a bad graphics card. What happens if you hold a flashlight on the screen, you see the desktop or not?

  • How can I get rid of the screen which is in safe MOde?

    When I turn everything on the my computer, go to my desktop and a black screen appears with the 4 corners with lettering safe mode, I'm still able to see all my icons, but my problems, the screen on safe mode, how do I get rid of this? Thank you.

    Hello

    . What exactly happens when you try to connect to a Normal mode?

    Please follow the steps and the link:

    Method 1:

    To completely turn off Safe Mode and return to the Normal Mode:

    a. click on the Start button in the lower left corner in Mode safe mode, and then select turn off computer, select restart from the context menu.

    b. place your finger on the key F8 as the computer stops and restarts. As soon as it starts to boot the system, start pressing F8 repeatedly.

    c. stop pressing F8 when you see a menu of options appear on the screen. This is the start menu. Select the Normal Mode in the start menu either hit the number next to the Normal Mode or by using the arrow keys to select Normal Mode and then pressing "Enter".

    d. waiting for start in Normal Mode.

    Method 2:

    a. close all running programs and open windows if you are back on the desktop.

    b. click on the Start button.

    (c) in the search box of the Start Menu, type in msconfig and press enter on your keyboard.

    d. the System Configuration utility will open and click on the Startup tab.

    e. you will now boot options. UNCHECK the box labeled Start secure

    f. press the apply button and then press the OK button.

    g. will now present you a prompt indicating that you must restart the computer to apply the change.

    Click the restart button to restart your computer and check the current status of the issue.

    I hope this helps.

  • How to reduce the screen resolution

    Windows 98 how forcing standard 640 x 480 to 1024 x 768 resolution settings as the slide bar is grayed out, is there a way to force it to change. I tried to change the drivers of the settings, but it keeps asking for the disks that I have not, overwhelms the display on the screen and I need to lower the resolution.

    Not a problem, John.

    You find the problem with technology is older.  Once the operating systems have been abandoned (98, XP and soon Win 7), the component manufacturer no longer provides drivers for them.  The fact is, develop drivers is not an easy task.  They must not only be compatible with the components, but with the other drivers.

    This is Win 7 Upgrade Advisor.  You can check if your computer supports Windows 7.  If this isn't the case, you do not simply to be able to adjust the resolution with Win 98.

    Please click "Thumbs Up" if I helped you and click on "Accept as Solution" If your problem is resolved.

  • Unable to reduce the screen resolution

    I use windows 7, 32-bit operating system. I can't lower the screen resolution using the fn key.

    Please help me

    Hi MD. SECK,

    You have Win7 all you have to do is right click anywhere, the office and the menu will display 'screen resolution' bottom of this menu.

  • My recently downloaded Windows Media Player 11 play dvd, audio cd and cd rom, but will not recognize two photos of the dvd which have been able to acknowledge by Media Player 10 and record of the Explorer Windows-with some difficulty

    1. Windows Media Player 10 has opened a photo successfully dvd but a message "Microsoft has encountered a problem and needs to close" came on the screen several times.  Had to re insert the dvd picture, but it would open again each time.
    2. Tried the cd drivers and troubleshooting dvd and was informed of my dvd could not be played because there was no decoder for dvd.  Following instructions and chose a windows xp approved decoder pack download - dvd has chosen the Roxio CinePlayer DVD Decoder Pack.
    3. Then upgraded the media player to Windows Media Player 11.
    4. After that, dvd and cd rom could be opened by the media player 11, but neither the DVD or cd ROM readers would recognize the photo DVD in question had been inserted into one of these discs, and even less to be opened by the media player.
    5. Program scanner and photo used to transfer my photos printed digitally on a dvd are trademarks of Hewlett-Packard.  Contact the center of the photo, but they could not provide me with any guidance or even particular HP photo program they used to create the dvd picture.  I remember the photos were stored on the dvd in JPEG format picture and was able to open by Windows Explorer before I've updated since WMP 10-11.

    "" I remember well, the pictures are stored on the dvd in JPEG format picture and was able to open by Windows Explorer before I've updated since WMP 10-11 ""

    Looks like you have a data dvd, which has just the pictures on it and it will not be seen by WMP, who needs a dvd-video disc.

    It should always open in windows Explorer and you should be able to see your pictues it.

  • On NEW laptop keyboard does not work after that the screen keyboard has been activated and then deactivated.

    Look at my friend got a new laptop and went through the whole upward. the on-screen keyboard has been activated which invalidates the real keyboard when the on-screen keyboard has been disabled the real keyboard has NO return. If this is a bug... Fix it. This is not a driver issue, it is not a user error. Stop giving people answers, trying to pretend like it's not not the OS when most people already know that it is.

    I'm sorry, but I didn't not new meant only one day.  And when I got my new laptop, one of the first things I did was to create a point of files, even a day later I had a restore to use - point and that was possible here as well.  I'm sorry it wasn't the case.

    If the system restore option is not available, do a startup repair, boot from the disk Installation of Windows Vista genuine (or one that you can borrow from someone) or a recovery disc.  Here is the procedure: http://www.bleepingcomputer.com/tutorials/tutorial148.html.  You may need to change the BIOS to do first the CD drive in the boot sequence to boot from the CD.  To do this, hold the screen that tells you the key F to push to enter the menu start or start of installation.  Push it quickly. Make the changes, save your work and exit.  Put the CD in the drive and reboot.  When you are prompted, press any key to boot from the CD.

    If you do not have a floppy disk, you can make a bootable recovery disk by using http://neosmart.net/blog/2008/windows-vista-recovery-disc-download/ with burning software like: http://www.snapfiles.com/get/active-isoburner.html and, of course, a blank CD.

    If this does not work, you can try to go into the BIOS during the startup (the key appropriate to push appear on the screen to enter the boot menu or boot installation - try them both in turn if both appear. It is possible that the BIOS contains an option to disable the keyboard (which may have been activated by the keyboard on the screen but not changed when disable you the on-screen keyboard) and you may need to re-enable manually.  There is a slight possibility, but it is an option to try.

    Another option to try is to set up a new user account that has never used the keyboard on the screen and see if the regular keyboard works when you connect to this account.  If so, you can simply treat the original as a corrupt account account and use the following procedures to complete the transfer.  To fix this use http://windows.microsoft.com/en-AU/windows-vista/Fix-a-corrupted-user-profile.

    I hope that one of these aid procedures.  I'm sorry if they seem to 'generic', but we do not really know what is the problem - especially since the system is new.  We try and identify the cause and fix the problem at the same time using the procedures available to us.  I suspect there's a registry tweak will correct this problem, but I went through the whole registry, and although I found several referencers keyboard, I could find no which seemed to control or not activate the main laptop keyboard (though it has been in one of the entries that has been encoded in binary that I couldn't read).  It's possible someone who knows more about the registry will respond to this issue with a proposal to amend (or perhaps another solution).

    I hope that one of the solutions I proposed works.  Please post back in all cases we will know whether or not to continue searching for an answer.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • How can I get the media which has been recorded on Windows Vista to play on Windows XP?

    Hello Forum... I would like to download/copy of the video programs & TV on my external drive seagate, primarily from my friends laptop, so I check it plays ok. When I get home it will not play on my Win XP Pro and just freezes my laptop, is there a fix or somethink for Win Vista Home Premium so that it works with my laptop Win XP Pro... Thanking you, yours sincerely, liam k

    I'm surprised VLC didn't work... I wonder if you
    a problem with your video driver. This may have a
    Update. In some rare cases updates automatic in Windows
    will install a video driver that is incompatible with
    your system than the one you already had. In this case...
    a system restore driver or the restoration is expected to dissipate it.

    Reduce the hardware acceleration of your chart may
    be worth a try:

    How to put in back of graphics hardware acceleration
    http://www.pptfaq.com/FAQ00129_How_to_set_graphics_hardware_acceleration_back.htm
    (scroll down to: "If you are using Windows 2000 or XP")
    (try to move the cursor notches 4 (everything except left
    the last of them))

    If they improve the question, you should look for the
    site Web of MFG. your video card
    a updated driver Win XP compatible video. Or...
    If your computer is a laptop... Search support
    site of the manufacturer of your computer.

    Improvement or not... don't forget to return the cursor
    to full.

    In any case...

    If you drag and drop the. AVI on the following utility... it
    will tell you if it's a DivX file or possibly a Xvid file.

    GSpot Super quick start
    http://www.headbands.com/GSpot/v26x/Quick_Start.html (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    * Proceed at your own risk *.

    DivX Codec
    http://www.free-codecs.com/DivX_download.htm XviD Codec
    http://www.free-codecs.com/download/xvid_codec.htm

    Good luck...

  • I used to be able to see all the cookies that had been installed, and now I can't.

    I am irritated beyond belief. Why should you change a good thing and make stupid?
    In the part of privacy options, I used to be able to see ALL the cookies that have been installed in a window, and I could choose those to whom I want to delete. I guess it was just too much control to give to us, if you had to remove this feature, right?
    I would go back to a previous version of Firefox. I'm sick and tired of your stupid updates that screw things for everyone.
    How can I revert to a previous version?

    • IF you use the parameter "Remember history" (as described in this article-> story to remember), click Delete the Cookies to view all cookies
    • IF you use the parameter "use custom settings for history" (as described in this article-> use the custom settings for history), click View the Cookies to view all cookies

    Check and tell if its working.

  • Printing of separations with the halftone in Photoshop with the SCREEN button has been disabled

    I want to start a discussion on trying to reimplement the button on the FORM to print output in Photoshop CS5 and upward as an add-on. This is a very important feature for the idustry I am.

    It is a huge disruption to the screen printing industry, as we can't easily output channels from indesign or illustrator from the file. I use photoshop to print separations for print multicolor with halftone and the button of the screen let me decided that lpi/dpi I would be out on my postscript printer. I contacted someone at Adobe, and indeed, they reported that the button of the print output options SCREEN has been removed. I want to make a petition to get this back button, that I have upgraded, and I won't be able to use the software for my needs. Thank you.

    http://forums.Adobe.com/thread/945132?TSTART=0

    You can lend your support to an existing application

    http://feedback.Photoshop.com/photoshop_family/topics/screen_function_for_separation_outpu t

Maybe you are looking for