Display problem on the screen

Hello

I set my screen resolution of 1440 x 900, which is recommended, but have these problems:
-Some programs starts, but doent open window
-the mouse disappears outside on the left side of the screen
-aero stops working
I had this problem before, but it fixed. Yesterday, I got an update from Windows update, and then the problems were back.
Help, please!
 
Original title: Screen Resolution

Now everything is ok.

I have uninstalled several small programs that I never use.

It could be a program called flplayer who got an update not so long ago.

Thank you!

Klaus

Tags: Windows

Similar Questions

  • When I try to "save under" I get a message "Initalising the root folders to display" and then the screen freezes

    When I try to "save under" I get a message "Initalising the root folders to display" and then the screen freezes. Sometimes when I click several times on the target folder it opens other times it does not. Any thoughts?

    Hello

    You try to save files using Microsoft office?

    If so, this article should help you

    The program stops responding when you try to open or to save a file in an Office 2002 program, in an Office 2003 program, in a 2007 Office program or in a program Office 2010

    http://support.Microsoft.com/kb/313937

    If its with a different program and then check if the problem exists in Safe Mode, if the computer works as expected in mode without failure, then we can solve the problem in the clean boot state.

    Step a. refer to the article below for the procedure safe mode in Windows XP

    A description of the options to start in Windows XP Mode

    http://support.Microsoft.com/kb/315222

    Step b. You need to perform a clean boot to find the program that is causing and then disable or remove.

    How to configure Windows XP to start in a "clean boot" State

    http://support.Microsoft.com/kb/310353/en-us

    Note: When you are finished troubleshooting, follow the steps as explained in the article to reset the computer to start as usual.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to display data on the screen and save the data in a file at the same time?

    The code can display acceleration on the screen of the playbook.

    But, when fprintf (f, "X (m/s2), Accel Accel Y (m/s2), Accel Z (m/s2) \n" ") runs, debug displays no source available.

    ??

    Does anyone know how to solve the problem, which writes data to a file?

    The code is below.

    /*
    * Copyright (c) 2011 Research In Motion Limited.
    *
    Licensed under the Apache License, Version 2.0 (the "license");
    * You may not use this file except in compliance with the license.
    * You can get a copy of the license at
    *
    www.Apache.org/licenses/license-2.0
    *
    * Unless required by the applicable law or agreement written, software
    * distributed under the license is distributed on an "AS IS" BASIS.
    * WITHOUT WARRANTIES OR CONDITIONS of ANY KIND, express or implied.
    * See the license for the specific language governing permissions and
    * limitations under the license.
    */

    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include
    #include

    /**
    The milliseconds between the accelerometer readings. It's the same thing
    * rate in which the accelerometer data will be updated
    * material. The update of material rate is below to help
    * accelerometer_set_update_frequency (FREQ_40_HZ).
    */
    public static const int ACCELEROMETER_MAX_POLL_INTERVAL = 25;

    public static screen_context_t screen_ctx;
    public static screen_window_t screen_win;
    dialog_instance_t main_dialog = 0;

    paused int = 0;

    The forces of the accelerometer
    float force_x, force_y, force_z;

    file elements
    int _logcounter = 0;
    FullName Char [256];
    FILE * f;

    /**
    * Use the PID to set the id of Group window.
    */
    public static char
    get_window_group_id()
    {
    public static char s_window_group_id [16] = "";
    If (s_window_group_id [0] == '\0') {}
    snprintf (s_window_group_id, sizeof (s_window_group_id), "%d", getpid());
    }
    Return s_window_group_id;
    }

    /**
    * Set up a basic screen, so that the browser will be
    * Send window state events when the State of the window changes.
    *
    * @return @c EXIT_SUCCESS or EXIT_FAILURE @c
    */
    public static int
    setup_screen()
    {
    If (screen_create_context (& screen_ctx, SCREEN_APPLICATION_CONTEXT)! = 0) {}
    Return EXIT_FAILURE;
    }
    If (screen_create_window (& screen_win, screen_ctx)! = 0) {}
    screen_destroy_context (screen_ctx);
    Return EXIT_FAILURE;
    }
    use of int = SCREEN_USAGE_NATIVE;
    If (screen_set_window_property_iv (screen_win, SCREEN_PROPERTY_USAGE, & use)! = 0) goto fail;
    If (screen_create_window_buffers (screen_win, 1)! = 0) goto fail;
    If (screen_create_window_group (screen_win, get_window_group_id())! = 0) goto fail;
    buff screen_buffer_t;
    If (screen_get_window_property_pv (screen_win, SCREEN_PROPERTY_RENDER_BUFFERS, (void *) & buff)! = 0) goto fail;
    buffer_size int [2];
    If (screen_get_buffer_property_iv (buff, SCREEN_PROPERTY_BUFFER_SIZE, buffer_size)! = 0) goto fail;
    int attributes [1] = {SCREEN_BLIT_END};
    If (screen_fill (screen_ctx, chamois, attributes)! = 0) goto fail;
    int dirty_rects [4] = {0, 0, buffer_size [0], buffer_size [1]};
    If (screen_post_window (screen_win, buff, 1, (const int *) dirty_rects, 0)! = 0) goto fail;
    Return EXIT_SUCCESS;
    in case of failure:
    screen_destroy_window (screen_win);
    screen_destroy_context (screen_ctx);
    Return EXIT_FAILURE;
    }

    /**
    * Rotates the screen at the specified angle.
    *
    @param angle angle to rotate the screen.  Must be 0, 90, 180 or 270.
    *
    * @return @c EXIT_SUCCESS on success, to another @c EXIT_FAILURE
    */
    public static int
    rotate_screen (int angle)
    {
    If ((angle! = 0) & (angle! = 90) & (angle! = 180) & (angle! = 270)) {}
    fprintf (stderr, "Invalid Angle\n");
    Return EXIT_FAILURE;
    }
    int rc;
    int rotation;
    RC = screen_get_window_property_iv (screen_win, SCREEN_PROPERTY_ROTATION, & rotation);
    If (rc! = 0) {}
    fprintf (stderr, "error getting the window of the screen rotation: %d\n", rc);
    Return EXIT_FAILURE;
    }
    int size [2];
    RC = screen_get_window_property_iv (screen_win, SCREEN_PROPERTY_BUFFER_SIZE, size);
    If (rc! = 0) {}
    fprintf (stderr, "error getting size memory buffer window screen: %d\n", rc);
    Return EXIT_FAILURE;
    }
    int temp;
    switch (angle - rotation) {}
    case - 270:
    case - 90:
    decision 90:
    case 270:
    Temp = size [0];
    size [0] = size [1];
    size [1] = temp;
    break;
    by default:
    break;
    }
    RC = screen_set_window_property_iv (screen_win, SCREEN_PROPERTY_ROTATION, &angle);)
    If (rc! = 0) {}
    fprintf (stderr, "screen rotation window for parameter error: %d\n", rc);
    Return EXIT_FAILURE;
    }
    RC = screen_set_window_property_iv (screen_win, SCREEN_PROPERTY_SIZE, size);
    If (rc! = 0) {}
    fprintf (stderr, "error creating window screen size: %d\n", rc);
    Return EXIT_FAILURE;
    }
    RC = screen_set_window_property_iv (screen_win, SCREEN_PROPERTY_SOURCE_SIZE, size);
    If (rc! = 0) {}
    fprintf (stderr, "error creating window screen size: %d\n", rc);
    Return EXIT_FAILURE;
    }
    RC = screen_set_window_property_iv (screen_win, SCREEN_PROPERTY_BUFFER_SIZE, size);
    If (rc! = 0) {}
    fprintf (stderr, "error creating window buffer size of the screen: %d\n", rc);
    Return EXIT_FAILURE;
    }
    Return EXIT_SUCCESS;
    }

    /**
    To manage an event of navigator.
    *
    * @return @c the value true if the application should shut down, another fake.
    */
    public static bool
    handle_navigator_event(bps_event_t *Event)
    {
    bool should_exit = false;
    switch (bps_event_get_code (event)) {}
    case NAVIGATOR_EXIT:
    should_exit = true;
    break;
    case NAVIGATOR_ORIENTATION_CHECK:
    navigator_orientation_check_response (event, true);
    break;
    case NAVIGATOR_ORIENTATION:
    {
    int angle = navigator_event_get_orientation_angle (event);
    If (rotate_screen (angle) == EXIT_FAILURE) {}
    should_exit = true;
    }
    navigator_done_orientation (Event);
    break;
    }
    }
    Return should_exit;
    }
    /**
    * Display an alert dialog box that contains the location data.
    */
    public static void
    show_main_dialog()
    {
    If {(main_dialog)
    return;
    }
    dialog_create_alert(&main_dialog);
    dialog_set_alert_message_text (main_dialog, "Acceleration to first fix");
    dialog_set_size (main_dialog, DIALOG_SIZE_FULL);
    dialog_set_group_id (main_dialog, get_window_group_id());
    dialog_set_cancel_required (main_dialog, true);
    dialog_show (main_dialog);
    }

    /**
    * Displays geolocation data in the main dialog box.
    */
    public static void
    display_acceleration_data (float force_x, float force_y, float force_z) {}
    char buf [1024];
    snprintf (buf, sizeof buf,
    "\tX: m\n % 7.3.f.
    "\tY: m\n % 7.3.f.
    "\tZ: m\n % 7.3.f."
    force_x, force_y, force_z);
    dialog_set_alert_message_text (main_dialog, buf);
    dialog_update (main_dialog);
    }

    void createafile() {}
    sprintf (fullname, "shared/documents/Raw-%d.txt",_logcounter);
    {if(f==null)}
    file does not exist
    f = fopen (fullname, "r");
    {while(f!=null)}
    file exists
    fclose (f);
    ++ _logcounter;
    sprintf (fullname, "shared/documents/Raw-%d.txt",_logcounter);
    f = fopen (fullname, "r");
    }
    }
    }

    write data to the file
    void writedataintofile() {}
    f = fopen (fullname, "w");
    fprintf (f, "X (m/s2), Accel Accel Y (m/s2), Accel Z (m/s2) \n" ");
    fprintf (f, "" 7% 7% .3f, .3f, %7.3f\n ', force_x, force_y, force_z ");
    fclose (f);
    }

    /**
    * A sample application shows the native APIs of BlackBerry for accelerometer.
    * The example initializes and reads the accelerometer periodically until one
    * NAVIGATOR_EXIT event is received.
    Enforcement also tuned to changes status window in the browser so that
    * It can stop reading the accelerometer when the application is no longer visible.
    */
    int main (int argc, char * argv {})
    bool exit_application = false;
    /*
    * Until we can listen for events from the BlackBerry Tablet OS platform
    * services, we need to initialize the BPS infrastructure
    */
    bps_initialize();
    /*
    * Once the BPS infrastructure has been initialized, we can save to
    * events of different services of BlackBerry Tablet OS platform. The
    * Browser service manages and provides the life cycle of application and
    * events of visibility.
    For the example, we ask browser events so that we can follow when
    * the system ends the application (NAVIGATOR_EXIT event). This allows to
    * us to clean up resources in the application.
    */
    navigator_request_events (0);
    dialog_request_events (0);
    /*
    * Initialize the screen so that the Windows Id is correctly set, to allow
    * dialogs to display.
    */
    If (setup_screen()! = EXIT_SUCCESS) {}
    fprintf (stderr, "Failed to initialize the screen.");
    Exit (-1);
    }
    /*
    * Once the BPS infrastructure has been initialized, we can save to
    * events of different services of BlackBerry Tablet OS platform. The
    * Browser service manages and provides the life cycle of application and
    * events of visibility.
    *
    For the example, we ask browser events so that we can follow when
    * the system ends the application (NAVIGATOR_EXIT event).
    *
    * We ask events of dialogue so that we can be notified when the service of dialogue
    * answers to our queries/requests.
    */
    If (BPS_SUCCESS! = navigator_request_events (0)) {}
    fprintf (stderr, "error asking navigator events: %s", strerror(errno) (errno));
    Exit (-1);
    }
    If (BPS_SUCCESS! = dialog_request_events (0)) {}
    fprintf (stderr, "error asking dialog events: %s", strerror(errno) (errno));
    Exit (-1);
    }
    /*
    * Create and display the dialog box that displays the data from the accelerometer.
    */
    show_main_dialog();
    /*
    Prior to initialize the accelerometer function, we must ensure the unit
    * takes in charge
    */
    If (sensor_is_supported (SENSOR_TYPE_ACCELEROMETER)) {}
    /*
    * If the device does not support the accelerometer so warn the user,.
    * clean in and out
    */
    public static const int SENSOR_RATE = 40;
    sensor_set_rate (SENSOR_TYPE_ACCELEROMETER, SENSOR_RATE);
    sensor_request_events (SENSOR_TYPE_ACCELEROMETER);

    }
    /*
    * Initialize the accelerometer setting the rate at which the
    * accelerometer values will be updated material
    */
    accelerometer_set_update_frequency (FREQ_40_HZ);

    /*
    Treat browser events and take the accelerometer readings periodically
    * until we receive a NAVIGATOR_EXIT event.
    */
    createafile();
    f = fopen (fullname, "w");

    While (! exit_application) {}
    /*
    * By setting the timeout to bps_get_event to ACCELEROMETER_MAX_POLL_INTERVAL,
    * We assign the maximum duration (in millis) who will wait before
    * release so that we can take a reading of the accelerometer.
    */
    bps_event_t * event = NULL;
    bps_get_event (& event, ACCELEROMETER_MAX_POLL_INTERVAL);

    If {(event)
    If (bps_event_get_domain (event) is {sensor_get_domain()})
    /*
    * We woke up. See if we are in the paused state. If not,
    take a reading of the accelerometer
    */
    If (! pause) {}
    sensor_event_get_xyz (event, & force_x, & force_y, & force_z);
    display_acceleration_data (force_x, force_y, force_z);
    fprintf (f, "X (m/s2), Accel Accel Y (m/s2), Accel Z (m/s2) \n" ");
    fprintf (f, "" 7% 7% .3f, .3f, %7.3f\n ', force_x, force_y, force_z ");
    } //paused
    }
    / * If this is an event of the dialog box, determine the response code and handle
    * the event accordingly.
    */
    {ElseIf (bps_event_get_domain (event) == dialog_get_domain() {)}
    ;
    }
    /*
    * If it's a NAVIGATOR_EXIT event and then set the exit_application
    * indicator so that the application stops processing events, clean and
    * output.
    */
    {ElseIf (bps_event_get_domain (event) == navigator_get_domain() {)}
    exit_application = handle_navigator_event (event);
    }
    } //if event
    } //while
    /*
    * Destroy the dialog box, if it exists.
    */
    If {(main_dialog)
    dialog_destroy (main_dialog);
    }

    fclose (f);

    /*
    * Clean the infrastructure bps and output
    */
    sensor_stop_events (SENSOR_TYPE_ACCELEROMETER);
    bps_shutdown();
    screen_destroy_window (screen_win);
    screen_destroy_context (screen_ctx);
    return 0;
    } //main

    Hello

    As I said on your other thread:

    In order to write in the shared directory/documents, your application should request action "access_shared" and it must be granted by the user. Make sure you have

    access_shared

    in your bar - descriptor.xml.

    Also note that the shared documents folder may not be the best place to write the application log data. There is one connects / in the sandbox to this effect, or the application directory data / directory if the information should be persisted. The documents/shared/folder is designed for documents that the user creates or interacts with.

    HTH,

    Christian

  • Satellite Pro L20-someone ' one can tell me if I have a problem with the screen?

    Hello

    I have a Pro L20 - PSL25E and I recently had problems with the screen, it was intermittently flickering/lose color and whiting almost (when the color fades white vertical lines begin to appear).
    This seemed to worsen after that I dropped it (only from about 2 feet off the ground, not a big drop).

    I thought that the sceen can go, but the performance of the laptop seems to be affected when this happens, the laptop started to run very slow (tracks mouse slowly, programs I clicked take ages to run and it freezes sometimes to stop flashing) that had me thinking that it might be a virus or performance problem.

    My screen, drivers are updated, I did a full scan with McAfee, ran a clear-up system and a Defrag.

    I was wondering if anyone knew if it seemed to be a problem with the connections of the screen and would need replacement or if it could be repaired or if it were a performance problem?

    Any help would be great thank you appreciate!
    Rebecca.

    Looks like the graphics chip has a problem, which I think is a motherboard replacement.

    You can get a quote for repair to an authorized service provider. There is a list of ASP on the Toshiba site.

  • Problem with the screen on IPAD curtain

    Hello

    I'm a bad psychic, and I have a problem with the screen curtain.

    A longitudinal of Voice Over, the screen curtain is automatically activate.

    Normally to turn it off, you must type three times with three fingers. Only on my IPAD when I type three times with three fingers is "saying that turns off or preach. Find it me impossible to disable the screen curtain when voiceover is active.

    The latest version of IOS 9.2.1 is installed.

    I reset the Ipad and nothing changes.

    Can someone help me?

    Thank you

    Is is possible that the zoom is also on your iPad? If this is the case, try to use a quadruple 3 finger tap to turn off screen curtain.

    If the zoom is not active, try:

    1. Possessing the sleep/wake and home button until the Apple logo appears or 15-20 seconds.
    2. If, you can't remove the curtain of the screen, I would advise you reset the settings of the iPad. Settings > general > reset > reset all settings. It will be his turn VoiceOver off, but then you can use iTunes to turn on VoiceOver. Voice-over should return without the curtain of the screen automatically active. IOS - Apple Support using accessibility features

    The of is it possible that zoom is also active your iPad? In this case, you must use a valve 3 quadruple finger pour disable the screen curtain.

    try if the zoom is not enabled:
    1. While holding the button market / sleep and home to ' to the Apple logo, or 15-20 seconds.
    2. If you still can't delete the screen curtain, I recommend to RESET the settings on the iPad. Settings > General > RESET > RESET all settings. This turns off VoiceOver, but you can then use iTunes to turn on VoiceOver. Back to turn voiceOver should without the curtain automatically active screen. Use IOS - Apple support accessibility features

    -AJ

  • problem on the screen

    My second generation G motorcycle has a problem on the screen: I play at some point, and it is clear that I play a point below. You can avoid I less the status bar. To resolve I have to turn on/off the screen again. Bothers a lot. It is a software problem?

    Your question looks like now. You should organize a replacement with original point of sale or repair.

    (Closing remarks)

    Mark

  • Display problem. The images have random black or white boxes that appear at different zoom levels. Picture is ok 100%

    I have recently updated my iMac last Adobe CC retina and now experience display problems. The images have random black or white boxes that appear at different zoom levels. Images ok 100% and some other levels of zoom.

    I've read other posts with the same questions.

    When Adobe gets out a fix, as this seems to be an error as Adobe making a lot of different HW platforms.

    Hi Martin,

    Please go to Preferences > Camera Raw and uncheck use display adapter. Click OK.

    Restart Photoshop and check for the issue.

    ~ UL

  • Display problems with the Portege R600 and Win 7

    I have a R600 running windows 7, every two minutes, I have a display problem where where the vertical pixels seem to get every centimeter unaligned, so my screen seems to blur digital in bars across it.

    I have an external monitor attached and get the same problem with or without him. I have tired the driver of toshiba and intel driver.

    It seems to go away if I have windows min and max, but sometimes it doesn't. If I run my mouse an affected area, that it seems in trouble and sometimes it's not all screen.

    A refresh solves it.

    Anyone have any ideas?

    > I have an external monitor attached and get the same problem with or without him.
    Maybe I m wrong but in most cases if these symptoms are seen on the two displays (internal & external) then a graphics chip could be affected
    It would be the worst case, because that would mean that the motherboard needs to be replaced

    But just a question; have you noticed that using the previous Windows OS preinstalled by maybe Toshiba (Win XP or Vista), you must install the image of Toshiba again to verify if this display problem is still visible

  • ThinkPad X 230 Windows 7-64: problems with the screen after updates

    Hi all

    I have a problem with the Thinkpad X 230. After a recent update of Windows 7 (64-bit), the screen resolution is set to 800 x 600 and brightness to the minimum. FN + F8/F9 does not work. The brightness is uncontrolled. I had to restore the system before the update.

    How to solve the problem, do anyone know?

    Thank you!

    Isosik

    Hi Isosik,

    Welcome to Lenovo Community!

    According to the request, we understand that you are facing problem with the display resolution on your ThinkPad X 230.

    If you have updated the drivers from Windows update, sometimes this kind of problem occurs with windows generic drivers for cause of driver incompatibility, suggest always update drivers only via the ThinkVantage System Update utility. Update only the application of Microsoft Windows Update.

    You can also manually download the drivers from the Lenovo support site.

    Lenovo support site.

    I hope this helps.

    Best regards

    Agnes Kumar

  • Display problem on the dv7 series laptop quick launch buttons

    Hello

    I have a new pavilion dv7-6b55dx laptop and I put windows 7 Professional (64 bit). Since that time (because before there home edition of the best buy store) everytime when I use a function key I don't see no display on the screen, for example, if you want to mute the sound, not sure if it worked or if you want to manage the brightness of the screen, you don't see anything on the screen (icon (, image, etc.).

    I downloaded the quick launch software and bottom of quick launch, but nothing has worked.

    How can I solve this problem?

    Thanks for your help

    Hello

    Download and install the HP OSD utility on the link below.

    http://ftp.HP.com/pub/SoftPaq/sp52501-53000/sp52956.exe

    Once the installation is complete, you pouvez must restart the laptop.

    Kind regards

    DP - K

  • HP Compaq Presario CQ60-615DX: problems of the screen and the cursor

    Hi - I'm not a sophisticated computer user! This problem has been occurring for about a week - intermittently. When I move the screen of my laptop forward or backward - it turns off and I see no longer the desktop icons. It takes awhile to several push and pull to get things working again on the right. Second problem is this: when I use the mouse and place the cursor on the icon to open something - nothing happens. I can not click. I can't even move the mouse to make a reboot - I end up having to press the button and wait until it to power down. When I turn it back on - sometimes it is fine and other, the same thing happens. My battery is exhausted or do I here some real problems? Help would be appreciated. Thanks, LdyBGood

    LdyBGood

    Welcome to the Community Forum of HP.

    You certainly have a hardware problem.

    There are threads of connection - small wires that connect the display to the rest of the computer which can be crushed, loose or disconnected.  Damage or disconnect can happen anywhere: from one of the ends of the connection point on the map of the computer where all the components most lies along the son in the hinge area - where the wires could be crushed - at the other end of the wires where they connect to the components in the display screen, antennas, webcam microphone or radio, wireless, or other components.  This damage can occur at any time to any computer age.

    It's sad.

    If the problem is broken wires, the situation is not hopeless: the good news is that such problem is not generally expensive to correct is not a death knell for a healthy computer.  In other words, it may be useful to have the computer by a qualified professional and trust.

    You can call HP, or you can take the computer to the local House of reliable repair.  The problem can usually be quickly diagnosed by a qualifed technician once that he / she can see the computer.

    You should, while you can backup your data to an external location.

    You should, while you can, save your most sensitive to a second external location data - say a USB key so that you can - if you need it - put these data on another computer while this computer are fixed.

    If you have an account of cloud, it is one that you can back up your data.  If you have a SIN - and you know what it is, you can back up your data to that.  If you can afford to buy a small drive external backup of your E-store, you can use it.

    Dragon tips

    • If you decide to take your computer to a local store OR if you decide to send your computer for repair, remove your most personal data and critics of the computer.  Do not quibble about "it's hard to do," just get the data on the computer after you are sure it is saved.  Do not give foreigners access to your private data.  If you don't know what you're doing: a friend for you help with backups.
    • Don't be fooled a method of data backup.  A backup is not enough - a backup is like locking the front door of your House and leave the door open.

    You can always call HP for help.

    Know that you can call HP to organize the computer to send to HP for repair, regardless of the status of the guarantee.  There is an extra charge for the service.  HP will take good care of the computer and will organize the details with you when you call.

    Contact telephone support HP - USA-

    List of

    HP technical support / Customer Service phone numbers - some English Speaking countries

    Including the United Kingdom and Europe

    Guarantee required - us. and Canada

    USA - contact HP / / Self-Help-Email - Chat

    Click on the thumbs-up Kudos to say thank you!

    And... Click on accept as Solution when my answer provides a fix or a workaround!

    I am happy to provide assistance on behalf of HP. I do not work for HP.

  • HP2000: HP 2000 display black but the screen showing all

    my laptop is hp 2000. its having problem with the display. While power on nothing, we can see on the screen, but other fine work (fan, caps lock, shift, wifi light, etc.) after that I can see Variant simplified on screen. I found any display on screen, but we cannot see. If we put a light tourch on screen, we can see the content. After I pass my turn and turn again and close the lid and display suddenly open came as usual. Once again, if it goes on standby or shutdown even mode problem will rise again. whenever I have to close the lid and open at the beginning... someone tell what is the problem on this... How can I solve this problem.

    @KRISHTVM1,

    Hello and thanks for the display on the HP support forums.  Please post back with the complete model and the product number of your laptop.  This will help me get you the link of your interview guide.

    The problem you are experiencing is cable going to the screen or the inverter.  It has come loose or broke.

    Here is a link to help you with that.

    Computers how can laptops HP - I find my model number or product number?

    Please post when you have a chance.  Thanks again for the post and have a nice day

  • BlackBerry Smartphones having HUGE problem with the screen

    Please help me people... My flipberry went completely crazy...
    I ' l try to explain the problem with as much detail as I can remember...
    Since last week or both internal as external screen my phone acted crazy...
    for the start of a few days, the problem started with the internal display will red sometimes, or show the half of the screen with stripes of colors... I thought it was a passing phase...
    but after a few days, the screen went completely black... both screens external and internal... until this time, as I ran the firmware 4.6.0.222
    so that day I sat down and wiped my phone completely and loaded the latest firmware 4.6.0.236... in order to completely black screens are returned to the way they were... sometimes ok, sometimes showing abstract things and weird colors...

    and even today both screens went completely black... so I'm currently trying to get back to the 4.6.0.180 version as recommended by t-mobile...

    and I have not dropped my phone once again since I bought it 4 months ago... need help

    usually the phone will come with a free warranty of one year.  The best thing I can suggest is to return to the top of any data you left phone and bring it back for a replacement or sent it to be repaired because it seems to me that your phone is defective.

  • garbage scrambled display horizontal lines obliterate all or most of Firefox (IE sometimes) to display, also start the screen icons

    Steps to follow:
    While browsing in Firefox (most often), IE (a little) Chrome (rarely/never)
    Result:
    Start intermittently once commissioning is found on almost every screen.
    Horizontal black lines obliterate sections/parts of the browser, or together.
    Lines to come and go as you scroll up and down the screen.
    Resize fullscreen actually disappear, then it returns often.
    Expected results:
    Displays text fields as you wish.
    Notes: Atypical in the browser Chrome, occurs less often in IE browser. Most frequently encountered in Firefox.
    Failure of the workaround:
    Submit a new application or change the video driver.
    No effect. Problem returns.

    Steps to follow:
    Even scrambled corrupted icons on the start screen of Windows, erasing some or all the details icon, but not the bottom area.
    Results:
    Again, scroll back he made come and go.
    Just maybe 1 time per week on the start screen, everyday in browsers.

    Hi Chris,

    1. What is the Biostar mother board model number?

    2. What are the specifications of onboard graphics card?

    3. have you updated the BIOS and drivers from the chipset?

    Check if the Biostar mother board model is compatible with Windows 8 by clicking on the link.

    Since you mentioned the problem on different versions of Windows 8. Either the card mother or graphics card is perhaps not compatible with Windows 8, or you must update the BIOS and drivers from the chipset. Contact the motherboard manufacturer support to improve the assistance on the update of the BIOS.

    Warning of the BIOS:

    BIOS change / semiconductor (CMOS) to complementary metal oxide settings can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the configuration of the BIOS/CMOS settings can be solved. Changes to settings are at your own risk.

    If the problem persists, you will need to update your graphics card. For more information, see supported by motherboard Biostar.

    http://www.Biostar-USA.com/techmain.asp

    Hope this helps

  • IPhone update (but an old having problems with the screen Activate iPhone and Apple ID)

    I have an iPhone 5 that, by chance (Pocket escaped), is stuck on the screen of the iPhone 'Find your phone' Activate.  The iPhone does not accept my Apple ID.  He is looking for an address icloud.com.  I can't honestly remember a set up, and I tried a number of variations on the icloud.com address (using the 'index' system provides) and passwords with no luck.  Do not have any problems with my Apple ID - I can see my phone & details on my screen of the user, when I connect my account (via the office).  Subject to my cellular service provider, I tried to force a restore on the phone via iTunes, but after that he asked me a few questions of initial Setup, I'm just at the "Activate iPhone" screen

    To be honest, I was going to pick up a new phone this week anyway.  My concern is now that I don't want to not suddenly faced with the same problem.  This lock, I meet - is - this quite specific for the phone itself? If I get a 6 plus and use this Apple ID to activate it, I ask in trouble? I admit that I am a twit when it comes to activation codes, the Apple ID, SIM cards and others.

    It was my first smartphone (+ 3 years now) and the installer was made by my employer, so strange things could happen at the beginning.

    Thank you all for any help

    If the implementation was made by your employer, they can put in something different from your Apple ID to find my iPhone. It also seems that if something was damaged in the fall. Who can contribute to the problem.

    If, when you receive your new phone, you make sure you use your Apple ID to find my iPhone, you should have no problem.

Maybe you are looking for

  • Air iPad

    When I delete an email on my desk, it clears on my iphone, but not to the tune of my ipad. This can be corrected?

  • LV OOP using accessor (subVIs) or operation bundle/unbundle methods?

    Hello When should I use the (private) (subVIs) accessor methods and when the bundle/unbundle the operation to access the data of the class? What is the reason that the operation bundle/unbundle is introduced in LabVIEW OOP? I need some rules for a co

  • Fixing Winsows XP system

    How can I get a disk to load once a person has worked on my computer.  I think he took something that he shouldn't have. I can't burn a CD or a record of information allows you to download any type of program. Is it possible to replace thate never wh

  • Download Microsoft cim database

    can I download cim of microsoft Basic. I have to install before I install my driver for Broadcom.

  • index.dat locked by winlogon.exe preventing roaming profiles to be completely unloaded on client PCs

    Greetings, I posted this thread in the server instances earlier because it's over my whole environment that this occurs, but since someone there told me to post it here, here goes: We have a problem with the index.dat (*) of locked files by the winlo