Need to find the correct reference for replacement screen Aspire 5742

Hello

I need to find the correct part for replacement screen Aspire 5742.  The backlight does not work anymore, and I already bought a UPS to see that this model/version does not use a UPS (as the backlight is LED and integrated in the element of the screen).  I find the somewhat confusing model numbers table.  The full model version seems to be:

5742 - 464G50Mnnk

S/N: [redacted to comply with guidelines]

SNID [redacted to comply with guidelines]

This seems to be a very good laptop that belongs to a mine Guigou, but not worth repair at the local dealership, and I'm sure I can replace the screen myself if I can get the right part, having already dismantled the set of sieves and to be an electronic engineer.

Either way, I guess that this version of model is the 5742, not the 5742 G (even if the model number has a 'G' in it: some of the confusion).  Any help would be appreciated.

Part numbers for the 15.6 TFT LCD for the Aspire 5742 are:

LK.15605.004
LK.15605.010
LK.15606.009
LK.15608.007
LK.15608.011
LK.1560A.004
LK.1560D.010
LK.1560E.004
LK.15605.019
LK.15606.012

Tags: Acer

Similar Questions

  • Not finding the correct syntax for the select statement

    Hello

    The following statement works very well and gives the expected results:
    prompt
    prompt Using WITH t
    prompt
    
    with t as
      (
       select a.proj_id,
              a.proj_start,
              a.proj_end,
              case when (
                         select min(a.proj_start)
                           from v b
                          where (a.proj_start  = b.proj_end)
                            and (a.proj_id    != b.proj_id)
                        )
                        is not null then 0 else 1
              end as flag
         from v a
        order by a.proj_start
      )
    select proj_id,
           proj_start,
           proj_end,
           flag,
           --
           -- the following select statement is what I am having a hard time
           -- "duplicating" without using the WITH clause
           --
           (
            select sum(t2.flag)
              from t t2
             where t2.proj_end <= t.proj_end
           ) s
      from t;
    As an academic exercise, I wanted to rewrite the above statement without using the WITH clause, I tried this (amongst dozens of other tests - I hit a mental block and cannot understand):
    prompt
    prompt without with
    prompt
    
    select c.proj_id,
           c.proj_start,
           c.proj_end,
           c.flag,
           --
           -- This is what I've tried as the equivalent statement but, it is
           -- syntactically incorrect.  What's the correct syntax for what this
           -- statement is intended ?
           --
           (
            select sum(t2.flag)
              from c t2
             where t2.proj_end <= c.proj_end
           ) as proj_grp
      from (
            select a.proj_id,
                   a.proj_start,
                   a.proj_end,
                   case when (
                              select min(a.proj_start)
                                from v b
                               where (a.proj_start  = b.proj_end)
                                 and (a.proj_id    != b.proj_id)
                             )
                             is not null then 0 else 1
                   end as flag
              from v a
             order by a.proj_start
           ) c;
    Thanks for the help, much appreciated.

    John.

    PS: The DDL for table v used by the above statements is:
    drop table v;
    
    create table v (
    proj_id         number,
    proj_start      date,
    proj_end        date
    );
    
    insert into v values
           ( 1, to_date('01-JAN-2005', 'dd-mon-yyyy'),
                to_date('02-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 2, to_date('02-JAN-2005', 'dd-mon-yyyy'),
                to_date('03-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 3, to_date('03-JAN-2005', 'dd-mon-yyyy'),
                to_date('04-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 4, to_date('04-JAN-2005', 'dd-mon-yyyy'),
                to_date('05-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 5, to_date('06-JAN-2005', 'dd-mon-yyyy'),
                to_date('07-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 6, to_date('16-JAN-2005', 'dd-mon-yyyy'),
                to_date('17-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 7, to_date('17-JAN-2005', 'dd-mon-yyyy'),
                to_date('18-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 8, to_date('18-JAN-2005', 'dd-mon-yyyy'),
                to_date('19-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 9, to_date('19-JAN-2005', 'dd-mon-yyyy'),
                to_date('20-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (10, to_date('21-JAN-2005', 'dd-mon-yyyy'),
                to_date('22-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (11, to_date('26-JAN-2005', 'dd-mon-yyyy'),
                to_date('27-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (12, to_date('27-JAN-2005', 'dd-mon-yyyy'),
                to_date('28-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (13, to_date('28-JAN-2005', 'dd-mon-yyyy'),
                to_date('29-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (14, to_date('29-JAN-2005', 'dd-mon-yyyy'),
                to_date('30-JAN-2005', 'dd-mon-yyyy'));
    select c.proj_id,
           c.proj_start,
           c.proj_end,
           c.flag,
           --
           -- This is what I've tried as the equivalent statement but, it is
           -- syntactically incorrect.  What's the correct syntax for what this
           -- statement is intended ?
           --
           (
            select sum(t2.flag)
              from (select a.proj_id,
                           a.proj_start,
                           a.proj_end,
                           case when (
                              select min(a.proj_start)
                                from v b
                               where (a.proj_start  = b.proj_end)
                                 and (a.proj_id    != b.proj_id)
                                     )  is not null then 0 else 1
                           end as flag
                      from v a
                     order by a.proj_start
                   ) t2
             where t2.proj_end <= c.proj_end
           ) as proj_grp
      from (
            select a.proj_id,
                   a.proj_start,
                   a.proj_end,
                   case when (
                              select min(a.proj_start)
                                from v b
                               where (a.proj_start  = b.proj_end)
                                 and (a.proj_id    != b.proj_id)
                             )
                             is not null then 0 else 1
                   end as flag
              from v a
             order by a.proj_start
           ) c;
    
  • Need to find the Antivirus Program for beginning OSX 10.5.8

    Need to find an anti-virus program updated for OSX 10.5.8

    Desktop IMAC Intel Core 2 Duo 2.4 GHz 1 GB 800 MHz DDR2 SDRAM

    MOM is 86 with a touch of dementia, but still, she loves his Mac and he uses every day to read his newspaper and use Facebook. She cannot tolerate the change of operating system and it has an office with a limit of 1 GB memory. Norton support is no longer its OS after this month.

    Have you looked at other AVP and haven't found one that support this old BONE. I checked Kaspersky, Bitdefender and Intego, MacAffee with no luck.

    It is a prime target for phishers and other infamous trolls. Help, please. I'm in his State for today only and need to solve this problem. Thank you

    You don't need a virus scanner - there is no virus affecting the Leopard. And a virus program, even if you could find one, does nothing about phishing - it's a question of not no follow-up on the questionable links.

  • need to find the printer driver for HP deskjet D2460 series...

    need help to find a printer driver for my HP DESKJET D2460 series... have no original disk...

    Surely you would visit the HP website > support > downloads for your specific model

  • Need to find the serial number for Acrobat 8

    I have a new computer and installed Acrobat X.  I have this serial number, but when I enter it, installation arrives with "serial number entered is valid, but cannot find a product calling it on this computer.  I can't find my serial number for Acrobat 8.  Any suggestions?

    Hi michelg69893932,

    You can contact customer service. Make sure that you sign in with your Adobe ID and select the product from the list.

    Then choose a chat option or by phone under "still need help? Contact us. "

    Kind regards

    Meenakshi

  • need to find the product key for Genuine Windows 7 Home Premium

    Last year, I bought a HP Mini 110 series laptop running Windows 7 Starter. I'll tell you the real story, months later, the operating system does not load. Before that, I bought the Windows Anytime Upgrade Windows 7 Home Premium. Days later, the DVD arrived from Microsoft. After the operating system does not load, I called HP support and said the problem of my laptop. Then they sent me a USB which has Windows 7 Starter (which is authentic and no time - watch) and a subscription for 1 year for Norton Antivirus 2011 (now expired). But when I bought the Genuine Windows 7 Home Premium, on the site Web was my product key, I did a .txt and copied the product key. And then when the OS does not load, and I had to perform a recovery on this piece of *. Can use a work card, or do I have to call microsoft? Just give me an answer, and NO pirated keys or I point out the text

    You can do a upgrade Express from Windows 7 Starter to Windows 7 Home Premium.

    Windows 7 - upgrade Express features:

    http://Windows.Microsoft.com/en-us/Windows7/products/features/Windows-Anytime-Upgrade

    If you are in Australia, Belgium, Canada, France, Germany, Italy, Japan, Netherlands, Spain, Sweden, Switzerland, the United Kingdom and the United States, you can use anytime upgrade. If this isn't the case, you will need to purchase the version of Windows 7 you want.

    http://Windows.Microsoft.com/en-us/Windows7/products/Windows-Anytime-Upgrade

    First of all, check that the edition of Windows 7, you are upgrading is already enabled (if it isn't, you will encounter complications and that you might start all by performing a clean installation). Click Start, type Anytime Upgrade, click the option to purchase a key. Wait while loading of the Express Upgrade page, click on the Windows 7 Home Premium Upgrade to buy it.

    Click Next, fill in your details (it is important that you do this because the product key will be sent to you as a backup in case you need to reinstall) enter your credit card information, click next to begin the upgrade, wait while checking the key, accept the license agreement , click upgrade, wait while the software updates, (it may take 10 minutes or more, depending on the case, updates are required), your computer restarts automatically, after the reboot, Windows 7 will notify its update of the computer, the computer will restart once more automatically and will be completed the upgrade, a windows will pop up by notifying the upgrade was successful and your computer is ready to use, click Close, you should be upgraded to Windows 7 Home Premium, your files, programs and settings stored, proceed to activate Windows 7 Home Premium.

  • Help! need to find the serial number for test

    There is no way for me to buy my trial subscription, since I have no serial number.

    The tests do not use serial numbers.   You will receive a serial number after the purchase.

  • Re: Satellite M35X-S149 - impossible to find a correct battery for this model

    I can't find the correct battery for this model.
    I looked on the websites of Toshiba, but I did not yet find.

    This model does not recognize by finder tool toshiba.
    I will be grateful if anyone has any idea where I can find suitable battery.

    Battery model number is: PA3395U-1BRS

    Hello

    You are already viewing the battery model number.
    Where is the problem? Google for this farm and I m you will get some online merchants who could provide this battery.

    Otherwise, get in touch with the Toshiba ASP in your country and order compatible battery.

  • I need help to find the correct version of the BIOS.

    As the title says I need assistance to find the correct version of the BIOS and now I have P02 - A2: 2011-10-31 and an Acer G3610 predator.

    I need an update is because I bought a new CPU and when I start the computer, it starts only for like 2 sec then turns off then on again one then it emits a beep of 3 or 4 times, then he is leaving and on but never goes Windows just a black screen so my guess is that I have an older version of the bios that does not recognize the CPU.

    Nope.

    I think they changed the revision of the motherboard, so you can't Flash this BIOS on your system.

    That's why you have a size mismatch error.

    So, you can not upgrade to Ivy bridge, sorry.

  • I bought the wrong version of Adobe Acrobat (for windows) and I have a Mac.  I need to exchange the correct software

    I bought the wrong version of Adobe Acrobat (for windows) and I have a Mac.  I need to exchange the correct software

    Hi K.Winger,

    In order to get this change, you need to take assistance from our support team cat.

    Please Contact Customer Care

    * Being to ensure that you are logged on the page with your adobe ID

  • Need to find the version number referring to the last name change for each emplid.

    emplIDName ageVersion
    --------   -----------
    1ABC252
    1ABC265
    1def279
    1def2815
    1def2918
    2JKL155
    2MNO168
    2MNO1711
    2PQR1820

    Need to find the version number referring to the last name change for each emplid.

    As indicated by the version number change when there is change in age as well, but I need a query that gives the version number referring to the last name change for each emplid.

    with

    DATA_TABLE (EmplId, Name, Age, version) as

    (select 1, 'abc', 25, 2 double Union all

    Select 1, 'abc', 26, 5 Union double all the

    Select 1, 'def', 27, 9 double Union all

    Select 1, 'def', 28, 15 double Union all

    Select 1, 'def', 29, 18 double Union all

    Select 2, 'jkl', 15 5 Union double all the

    Select 2, 'mno', 16, 8 double Union all

    Select 2, 'mno', 17, 11 double Union all

    Select 2, 'pqr', 18, 20 double

    )

    Select emplid,

    Max (Name) name of Dungeon (dense_rank last order by version).

    Max (Age) age of Dungeon (dense_rank last order by version).

    version Max (version)

    from (select emplid, name, version,)

    -case where name! = lag(name,1,name) on (emplid version order partition)

    then "renamed".

    end change

    of data_table

    )

    where the change is not null

    Emplid group

    EMPLID NAME AGE VERSION
    1 def 27 9
    2 PQR 18 20

    Concerning

    Etbin

  • Need to find the cmos on Satellite Pro 2100 battery

    I have a laptop that is not keep date/time settings and I need to identify the laptop to find the correct instructions to take apart.

    The brand is a Satellite Pro SP2100, model PS210E006P9-EN number, but I can't find this brand/model on the Toshiba site. The closest I can find is Satellite 2400-103, part number: PS240 - T 014, 1, that seems identical.

    I tried to use the identify tool of Toshiba to detect what is the laptop, but that fails to provide results.

    I also need to find out what food is for this unit as the current is defective and exposed wires.

    The adapter of current with her is PA3201U-1ACA, the problem is that this card has another card on the end to fit the power plug to the back of the laptop. The connector at the end of PA3201U is too thin to fit.

    Hello

    This laptop is very old and the name of this machine is: Satellite Pro 2100 PS210E

    > I have a laptop that is not keep date/time settings and I need to identify the laptop to find the correct instructions to take apart.

    Usually the CMOS battery can be charged. You must connect the power adapter and the laptop must be powered for about 12-14 hours.

  • HP Mini 110-3549tu: pls send the correct driver for HP Mini 110-3549TU win 7 32 bit

    pls send the correct driver for HP Mini 110-3549TU win 7 32 bit... I try to look for the HP Mini 110-3549TU in your search engine in support download driver, when I try to download and install, all off them are not compatible as the wifi Ralink 802.11 b/g/n WiFi Adapter sp55086.exe... I need the controller ethernet network controller, video controller... driver

    Hello:

    Graphics card:

    http://h10025.www1.HP.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-84613-1&cc=us&DLC=en&LC=en&OS=4062&product=4166078&sw_lang=

    Ethernet:

    http://h10025.www1.HP.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-85100-1&cc=us&DLC=en&LC=en&OS=4062&product=4166078&sw_lang=

    I know not what model your wireless card then please do the following and I will understand this...

    Since there is no driver installed wireless, we need a labeled device network controller in Device Manager in the category other devices.  The network controller device will be a little! mark next to him.

    Thus, to find the network controller device, click on that and then click on the Details tab.

    Now, you see a drop-down list of property and it is set by default to the Description of the unit.

    On this list and select the second element (Hardware ID).

    After the first string of characters you see in the window.

  • find the right drivers for HP ProBook 4530 s (B0W10ES #BCM)

    Hi, I have problems finding the right drivers for HP ProBook 4530 s (product number: B0W10ES-#BCM)
    Windows 7 Home Premium 64-bit
    Intel® Pentium B950
    ATI Radeon HD 6490
    WiFi 802.11 b/g/n
    Bluetooth
    LAN 10/100/1000
    ExpressCard 34
    USB 3.0
    Media card reader
    Webcam
    etc... Please help me

    Standard VGA graphics card
    PCI\VEN_1002 & DEV_6760 & SUBSYS_167D103C & REV_00
    PCI\VEN_1002 & DEV_6760 & SUBSYS_167D103C
    PCI\VEN_1002 & DEV_6760 & CC_030000
    PCI\VEN_1002 & DEV_6760 & CC_0300

    Base system device
    PCI\VEN_197B & DEV_2392 & SUBSYS_167C103C & REV_30
    PCI\VEN_197B & DEV_2392 & SUBSYS_167C103C
    PCI\VEN_197B & DEV_2392 & CC_088000
    PCI\VEN_197B & DEV_2392 & CC_0880

    Base system device
    PCI\VEN_197B & DEV_2393 & SUBSYS_167C103C & REV_30
    PCI\VEN_197B & DEV_2393 & SUBSYS_167C103C
    PCI\VEN_197B & DEV_2393 & CC_088000
    PCI\VEN_197B & DEV_2393 & CC_0880

    Ethernet controller
    PCI\VEN_10EC & DEV_8168 & SUBSYS_167C103C & REV_06
    PCI\VEN_10EC & DEV_8168 & SUBSYS_167C103C
    PCI\VEN_10EC & DEV_8168 & CC_020000
    PCI\VEN_10EC & DEV_8168 & CC_020

    Network controller
    PCI\VEN_10EC & DEV_8176 & SUBSYS_169F103C & REV_01
    PCI\VEN_10EC & DEV_8176 & SUBSYS_169F103C
    PCI\VEN_10EC & DEV_8176 & CC_028000
    PCI\VEN_10EC & DEV_8176 & CC_0280

    Unknown device
    ACPI\HPQ0004
    * HPQ0004

    PCI Simple communications Controller of
    PCI\VEN_8086 & DEV_1C3A & SUBSYS_167C103C & REV_04
    PCI\VEN_8086 & DEV_1C3A & SUBSYS_167C103C
    PCI\VEN_8086 & DEV_1C3A & CC_078000
    PCI\VEN_8086 & DEV_1C3A & CC_0780

    (USB) Universal Serial Bus controller
    PCI\VEN_1033 & DEV_0194 & SUBSYS_167C103C & REV_04
    PCI\VEN_1033 & DEV_0194 & SUBSYS_167C103C
    PCI\VEN_1033 & DEV_0194 & CC_0C0330
    PCI\VEN_1033 & DEV_0194 & CC_0C03

    Is necessary when you replace the hard drive to install SSD drive some software/driver? Thank you very much for your help!

    Hello:

    The specific drivers you need are:

    PCI\VEN_1002 & DEV_6760:

    http://h20564.www2.HP.com/hpsc/SWD/public/detail?sp4ts.Oid=5060881&swItemId=ob_101995_1&swEnvOid=4058

    PCI\VEN_197B & DEV_2392 & 3:

    http://h20564.www2.HP.com/hpsc/SWD/public/detail?sp4ts.Oid=5060881&swItemId=ob_116003_1&swEnvOid=4058

    PCI\VEN_10EC & DEV_8168:

    http://h20564.www2.HP.com/hpsc/SWD/public/detail?sp4ts.Oid=5060881&swItemId=ob_123192_1&swEnvOid=4058

    PCI\VEN_10EC & DEV_8176:

    http://h20564.www2.HP.com/hpsc/SWD/public/detail?sp4ts.Oid=5060881&swItemId=ob_105197_1&swEnvOid=4058

    ACPI\HPQ0004:

    http://h20564.www2.HP.com/hpsc/SWD/public/detail?sp4ts.Oid=5060881&swItemId=ob_125640_1&swEnvOid=4058

    PCI\VEN_8086 & DEV_1C3A:

    http://h20564.www2.HP.com/hpsc/SWD/public/detail?sp4ts.Oid=5060881&swItemId=ob_102185_1&swEnvOid=4058

    PCI\VEN_1033 & DEV_0194:

    http://h20564.www2.HP.com/hpsc/SWD/public/detail?sp4ts.Oid=5060881&swItemId=ob_108572_1&swEnvOid=4058

  • What is the correct format for a single. File ALX for pre and Post 5.0?

    Hello

    We have an application which works fine on the pre 5.0 BlackBerry OS.  We have one ALX file that uses the _blackberryVersion designation to determine what COD files must be installed to which devices.  We do this because we build separate sets based on the device, for example, the version of the storm is more optimized for the storm devices.  It was all working well, but with the release of BlackBerry OS 5.0 OS versions seem to have changed.  Previously, the storm was 4.7.0.x and when the tour came out it was 4.7.1.x.  Now, however, so the Bold 9700 and Storm 2 are the two 5.0.0.x to the less based on the OS versions for the two simulators available right now.  It is therefore impossible to use the name of _blackberryVersion in the ALX file, at least for us, since we have different files COD for the storm, with touchscreen and other devices without touchscreen.

    So, I try to understand what the appropriate method for the use of a single file ALX is in this case.  From what I can tell the _blackberryVersion element uses only the three first sections of the version, for example 4.7.0 or 5.0.0 so even trying to make it more specific would not work and would also not practice for all minor versions that will be potentially different carriers.

    I did try to use the name of the series, for example , and even that would not work.  I also tried with 9500 | 9530 | 9550 and always had an error in the Application Loader saying there is no compatible software.  At first I thought it was due to some sections of with _blackberryVersion and then some with the series.  But I tried a new ALX file with just the designation of series and still no luck.

    Has anyone found how to do this properly yet?  Are there examples of ALX files which series =? Someone at - it examples of work from ALX files that use the _blackberryVersion and the series?

    Before everyone jumps on me, I'm not the real Director of enforcement, I only update the ALX file.  So I don't think it's possible to have a single file of COD to build, but at that time, that never would have happened so I need to find the best solution with different files of COD, that shouldn't be a problem because she supported and described in the documentation.

    If I need to display the ALX file please let me know.

    Kind regards

    David Dewaele, Jr.

    The correct series attribute for 9500 is "Thunder".

    You can find that where she attributes to all here-(for normal installations)

    C:\Program Files\Common Motion\AppLoader\Device.xml search

Maybe you are looking for