Need help on this one

This occurred only during the few days and don't know why. Hoping someone here can solve this problem for me.

Whenever I use the black point in curves that it washes out the picture.

See you soon

Gerry

Screen Shot 2016-07-06 at 4.03.20 PM.png

Hello, try this:

1. keep pressing 'Alt' and click on 'Auto '.

2. check if the 'Auto' is similar to my screenshot.

Then, you can change the option 'Auto' with the black Shdow again.

Tags: Photoshop

Similar Questions

  • 1 important update is never installed. Code 8007007E update: KB 94895 need help with this one. I would be very grateful!

    I can't find similar situations

    Check this KB number, please.

    Previous discussions about the error: http://www.google.com/search?hl=en&safe=off&rls=com.microsoft: en - US & q = + site: social.answers.microsoft.com + social.answers.microsoft.com + 8007007e & ei = SpXIAcPElAfKz9mHCw-bud & his = X & oi = nshc & resnum = 1 & ct = more results, & ved = 0CAsQ2AQ ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Is there a default value for the color management in PSE10? Beautiful photos from iPhoto, but blur with elements. I need help with this before as I consider that the upgrade to PSE13 and beyond.

    Is there a default value for the color management in PSE10? Beautiful photos from iPhoto, but blur with elements. I need help with this before as I consider that the upgrade to PSE13 and beyond.

    Printing which forms an angle seems ok, but one that is horizontally seems faded, incomplete.

    I was wondering if I saved a layer somewhere and set it as a default value.

    If you group the layers, you will be left with a single layer, thus spreading your concern.

    Suggest that you do the following:

    1. Make sure you have the latest drivers for your printers
    2. Reset the default preferences.

    Hold the Alt, Ctrl + Shift keys when you click the icon to open the items. When asked if you want to delete the settings file, say Yes.

    Items nearby and let regenerate the file.

  • Need help with this gallery of xml!

    I have build a gallery but its very simple... There are pictures of the xml file.

    I have attached all the zip files.

    I just want two things if anyone can help.

    first of all when I press the next button, he's going to the next image, but without effect. It just displays the following image... I want to incorporate the effect of dragging when the image is changed to another.

    and secondly, I want to use the AutoPlay feature.

    Once swf starts images came one by one with a vertical drop of a few seconds.

    Thanks in advance... I really need help with this..!

    For the look of sliding effect using the actionscript class Tween.  Allows you to create motion tweens using the code.  The example below will be tween property _x of the instance named anObject from 0 to 300 in 3 seconds...

    import classes before using

    Import mx.transitions.Tween;
    Import mx.transitions.easing.Regular;

    TW var = new Tween (anObject, "_x", Regular.easeIn, 0, 300, 3, true);

    To implement an enforcement function auto you need to import all the images first, in the order, then you will need to use form any controlled timer, such as setInterval (with clearInterval not to need) in order to have things turn on automatically by some part-time

  • I need help confirming this phone I did not steal F1 * F9R

    I need help confirming this phone I did not steal F1 * F9R

    < personal information under the direction of the host >

    Here nobody.

  • [Error number: 0x8024400A] Need help with this error... I reinstalled XP SP1 and I can't get an auto update that's simple to install, just get this error every time

    [Error number: 0x8024400A] Need help with this error... I reinstalled XP SP1 and I can't get an automatic update that's simple to install, just get this error at each time HHHHEEEELLLPPPPP! Thank you

    I had the same problem.  But finally found a solution.  If your listing is similar to mine, then keep.  XP Media Center Edition 2005 (sp2).  AMD Athlon 64 x 2 Dual-Core, HP a1630n desktop computer.

    Go to the HP website, search for sp37394-XP sp3 Upgrade utility Microsoft for systems equipped with AMD processors.

    I had the same 0 x 80240036, 0x8024400a error, but realize my problem was really get manually downloaded sp3 and installed without continue loop crashing and not error messages.

  • need help for this query

    Hi gurus

    need help with this query,

    I want to display the records in the table emp
    SQL> Select Deptno,sal,sal/SUMSAL Percent,rn
      2  From  ( Select emp.*,Sum(Sal) Over() "SUMSAL",Row_number() Over(Order by sal Desc) rn
      3   From emp
      4        )
      5  /
    
          EMPNO     DEPTNO        SAL    PERCENT         RN
    --------- ---------- ---------- ---------- ----------
         7839         10       5000 .172265289          1
         7902         20       3000 .103359173          2
         7788         20       3000 .103359173          3
         7566         20       2975 .102497847          4
         7698         30       2850 .098191214          5
         7782         10       2450 .084409991          6
         7499         30       1600 .055124892          7
         7844         30       1500 .051679587          8
         7934         10       1300 .044788975          9
         7521         30       1250 .043066322         10
         7654         30       1250 .043066322         11
         7876         20       1100 .037898363         12
         7900         30        950 .032730405         13
         7369         20        800 .027562446         14
    
    14 rows selected.
                   
     
    I want just the records
          EMPNO     DEPTNO        SAL    PERCENT         RN
    ---------- ---------- ---------- ---------- ----------
          7839         10       5000 .172265289          1
          7902         20       3000 .103359173          2
          7788         20       3000 .103359173          3
          7566         20       2975 .102497847          4
          7698         30       2850 .098191214          5
    with sum (Percent) of remaing records.....
        Others                          .420327304  
    Thank you

    Published by: SeenuGuddu on February 27, 2011 03:39
    with a as
    (
    Select
    Empno, Deptno ,sal, sal/SUMSAL Percent,
    case when rn<=5 then rn else null end rnm
    From  (Select emp.*, Sum(Sal) Over() "SUMSAL",
    Row_number() Over(Order by sal Desc) rn
    From emp)
    )
    select
    case when max(rnm) is not null then to_char(max(empno)) else 'Others:' end empno,
    case when max(rnm) is not null then max(deptno) else null end deptno,
    case when max(rnm) is not null then max(sal) else null end sal,
    to_char(sum(percent), '90.99') percent,
    max(rnm) rn
    from a
    group by rnm order by rnm
    
    EMPNO                                    DEPTNO                 SAL                    PERCENT RN
    ---------------------------------------- ---------------------- ---------------------- ------- ----------------------
    7839                                     10                     5000                     0.17  1
    7902                                     20                     3000                     0.10  2
    7788                                     20                     3000                     0.10  3
    7566                                     20                     2975                     0.10  4
    7698                                     30                     2850                     0.10  5
    Others:                                                                                  0.42                         
    
    6 rows selected
    
  • Need help. This program is a Virus? Pop-ups__Windows XP - Groovy walrus - BACK

    1 wmpscfgs.exe is this a virus?

    http://i259.Photobucket.com/albums/hh282/chips909/pop-up.PNG

    2 svchost.exe is a virus?

    http://i259.Photobucket.com/albums/hh282/chips909/pop-up02.PNG

    Well, I got some virus lately. :/ av.exe and much more.

    I had a few problems if you could help me.
    Theres been more there just very quickly.

    http://social.answers.Microsoft.com/forums/en-us/XPRepair/thread/113d3b55-d4b3-47f1-8d61-c8fdf86d8a1b/#5d486d42-0fc0-4393-9A18-12828db6bae9

    This is my another Post. I really need help.

    This virus has turned off my registry Variables. I get the error message: «Registry editing has been disabled by your Adimn.»
    How can I fix?

    --------------------
    Csrss.exe - Virus?
    Lsass.exe - Virus?
    mbptn.exe - Virus?
    sttray.exe - Virus?
    Smss.exe - Virus?
    Svchost.exe - Virus?
    Winlogon.exe - Virus?
    Spoolsv.exe - Virus?
    bgsvcgen.exe Virus?
    jqs.exe - Virus
    MDM.exe - Virus?
    --------------------

    Please answer this can't is\isn a Virus that I have just listed.
    Thank you
    -Morse groovy-

    Csrss.exe - Virus?

    normally no; See http://www.neuber.com/taskmanager/process/csrss.exe.html
    Lsass.exe - Virus?
    normally no; See http://www.neuber.com/taskmanager/process/lsass.exe.html
    mbptn.exe - Virus?
    normally no; See http://www.neuber.com/taskmanager/process/mpbtn.exe.html
    sttray.exe - Virus?
    No.; See above site (sigmatel audio)
    Smss.exe - Virus?
    normally no; Well that eventually check infection http://www.neuber.com/taskmanager/process/smss.exe.html
    Svchost.exe - Virus?
    No.; Generic Host Process for Win32 Services
    Winlogon.exe - Virus?
    No.; logon XP
    Spoolsv.exe - Virus?
    No.; service of ms coils
    bgsvcgen.exe Virus?
    No.; TMPGEnc DVD with DivX Authoring Authorr3
    jqs.exe - Virus
    No.; Java quick start
    MDM.exe - Virus?
    No; machine debug manager
  • Need help with this problem please

    Hi all
    I have 2 tables and I am runnig the following query against it:
    select t1.ID_NBR, t1.START_DATE,t1.END_DATE,t1.SAMPLE_ID,t2.END_INTV_TIME,t2.CIN_DATA_ID
    from sample t1,weekend t2
    where t1.SAMPLE_ID=t2.SAMPLE_ID_1
    and t1.WEEKEND_FLAG='Y'
    and t1.SITE_ID_NBR='000097117011'
    and get the following dataset:
    ID_NBR     START_DATE     END_DATE     SAMPLE_ID     END_INTV_TIME     CIN_DATA_ID
                             
    97117011     91908     92108     143493     100     131834
    97117011     91908     92108     143493     200     131835
    97117011     91908     92108     143493     300     131836
    97117011     91908     92108     143493     400     131837
    97117011     91908     92108     143493     500     131838
    97117011     91908     92108     143493     600     131839
    97117011     91908     92108     143493     700     131840
    97117011     91908     92108     143493     800     131841
    97117011     91908     92108     143493     900     131842
    97117011     91908     92108     143493     1000     131843
    97117011     91908     92108     143493     1100     131844
    97117011     91908     92108     143493     1200     131845
    97117011     91908     92108     143493     1300     131846
    97117011     91908     92108     143493     1400     131847
    97117011     91908     92108     143493     1500     131848
    97117011     91908     92108     143493     1600     131849
    97117011     91908     92108     143493     1700     131850
    97117011     91908     92108     143493     1800     131851
    97117011     91908     92108     143493     1900     131852
    97117011     91908     92108     143493     2000     131853
    97117011     91908     92108     143493     2100     131854
    97117011     91908     92108     143493     2200     131855
    97117011     91908     92108     143493     2300     131856
    97117011     91908     92108     143493     2400     131857
    97117011     91908     92108     143493     100     131858
    97117011     91908     92108     143493     200     131859
    97117011     91908     92108     143493     300     131860
    97117011     91908     92108     143493     400     131861
    97117011     91908     92108     143493     500     131862
    97117011     91908     92108     143493     600     131863
    97117011     91908     92108     143493     700     131864
    97117011     91908     92108     143493     800     131865
    97117011     91908     92108     143493     900     131866
    97117011     91908     92108     143493     1000     131867
    97117011     91908     92108     143493     1100     131868
    97117011     91908     92108     143493     1200     131869
    97117011     91908     92108     143493     1300     131870
    97117011     91908     92108     143493     1400     131871
    97117011     91908     92108     143493     1500     131872
    97117011     91908     92108     143493     1600     131873
    97117011     91908     92108     143493     1700     131874
    97117011     91908     92108     143493     1800     131875
    97117011     91908     92108     143493     1900     131876
    97117011     91908     92108     143493     2000     131877
    97117011     91908     92108     143493     2100     131878
    97117011     91908     92108     143493     2200     131879
    97117011     91908     92108     143493     2300     131880
    97117011     91908     92108     143493     2400     131881
    97117011     91908     92108     143493     100     131882
    97117011     91908     92108     143493     200     131883
    97117011     91908     92108     143493     300     131884
    97117011     91908     92108     143493     400     131885
    97117011     91908     92108     143493     500     131886
    97117011     91908     92108     143493     600     131887
    97117011     91908     92108     143493     700     131888
    97117011     91908     92108     143493     800     131889
    97117011     91908     92108     143493     900     131890
    97117011     91908     92108     143493     1000     131891
    97117011     91908     92108     143493     1100     131892
    97117011     91908     92108     143493     1200     131893
    97117011     91908     92108     143493     1300     131894
    97117011     91908     92108     143493     1400     131895
    97117011     91908     92108     143493     1500     131896
    97117011     91908     92108     143493     1600     131897
    97117011     91908     92108     143493     1700     131898
    97117011     91908     92108     143493     1800     131899
    97117011     91908     92108     143493     1900     131900
    97117011     91908     92108     143493     2000     131901
    97117011     91908     92108     143493     2100     131902
    97117011     91908     92108     143493     2200     131903
    97117011     91908     92108     143493     2300     131904
    97117011     91908     92108     143493     2400     131905
    What I wanted was to add 2 columns to all data above, the reason is the dataset above has 72 files, one file per hour for 3 days from Friday 01:00 and ending the Sunday i 2400, but all have in all of the above data is just the date of beginning and end, so I created the following query to add the columns :
    SELECT *
      FROM (SELECT t.*,
                   TO_CHAR (TO_DATE (start_date, 'mmddrr') + TRUNC (rn / 24),
                            'Day'
                           ) AS weekday,
                                  TO_CHAR (TO_DATE (start_date, 'mmddrr') + TRUNC (rn / 24),
                            'mmddyy'
                           ) AS next_date
              FROM (SELECT t1.id_nbr,
                                                  t1.start_date,
                           TO_CHAR (TO_DATE (t1.start_date, 'mm/dd/yy'),
                                    'fmDay'
                                   ) AS start_day,
                           t1.end_date,
                           TO_CHAR (TO_DATE (t1.end_date, 'mm/dd/yy'),
                                    'fmDay'
                                   ) AS end_day,
                           t2.sample_id_1, t2.cin_data_id,
                           t2.end_intv_time, ROW_NUMBER () OVER (PARTITION BY t2.sample_id_1 ORDER BY t2.cin_data_id)
                                                                            AS rn,
                           COUNT (t2.cin_data_id) OVER (PARTITION BY t2.sample_id_1)
                                                                           AS cnt,
                           t1.weekend_flag
                      FROM sample t1,
                           weekend t2
                     WHERE t1.sample_id = t2.sample_id_1
                       AND t1.weekend_flag = 'Y') t)
     WHERE TRIM (weekday) IN ('Friday', 'Saturday', 'Sunday')
       AND nbr = '000097117011'
    And the problem I have now is instead of 72 for 3 days I get only 71 and time 2400 is paased on the next day, I tried to use CEIL instead and ended up getting 48 reocrds instead, the following dataset is when I used the above query
    ID_NBR     START_DATE     START_DAY     NEXT_DATE     WEEKDAY     END_DATE     END_DAY     SAMPLE_ID     CIN_DATA_ID     END_INTV_TIME
                                                 
    97117011     91908     Friday     91908     Friday        92108     Sunday     143493     131848     1500
    97117011     91908     Friday     91908     Friday        92108     Sunday     143493     131849     1600
    97117011     91908     Friday     91908     Friday        92108     Sunday     143493     131850     1700
    97117011     91908     Friday     91908     Friday        92108     Sunday     143493     131851     1800
    97117011     91908     Friday     91908     Friday        92108     Sunday     143493     131852     1900
    97117011     91908     Friday     91908     Friday        92108     Sunday     143493     131853     2000
    97117011     91908     Friday     91908     Friday        92108     Sunday     143493     131854     2100
    97117011     91908     Friday     91908     Friday        92108     Sunday     143493     131855     2200
    97117011     91908     Friday     91908     Friday        92108     Sunday     143493     131856     2300
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131857     2400
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131858     100
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131859     200
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131860     300
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131861     400
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131862     500
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131863     600
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131864     700
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131865     800
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131866     900
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131867     1000
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131868     1100
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131869     1200
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131870     1300
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131871     1400
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131872     1500
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131873     1600
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131874     1700
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131875     1800
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131876     1900
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131877     2000
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131878     2100
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131879     2200
    97117011     91908     Friday     92008     Saturday      92108     Sunday     143493     131880     2300
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131881     2400
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131882     100
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131883     200
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131884     300
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131885     400
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131886     500
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131887     600
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131888     700
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131889     800
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131890     900
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131891     1000
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131892     1100
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131893     1200
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131894     1300
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131895     1400
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131896     1500
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131897     1600
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131898     1700
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131899     1800
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131900     1900
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131901     2000
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131902     2100
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131903     2200
    97117011     91908     Friday     92108     Sunday        92108     Sunday     143493     131904     2300
    Need help please.
    Thank you

    Hello

    Hours in a range of 0 to 23 hours day after midnight. You count from 1, not 0, so the 24th hour (from Friday) is actually from 00:00 on Saturday, and the 72nd hour is 00:00 Monday, that you are not counting in the WHERE clause.

    Maybe when you calculate tn, you might simply subtract 1:

     SELECT *
      FROM (SELECT t.*,
                   TO_CHAR (TO_DATE (start_date, 'mmddrr') + TRUNC (rn / 24),
                            'Day'
                           ) AS weekday,
                                  TO_CHAR (TO_DATE (start_date, 'mmddrr') + TRUNC (rn / 24),
                            'mmddyy'
                           ) AS next_date
              FROM (SELECT t1.id_nbr,
                                                  t1.start_date,
                           TO_CHAR (TO_DATE (t1.start_date, 'mm/dd/yy'),
                                    'fmDay'
                                   ) AS start_day,
                           t1.end_date,
                           TO_CHAR (TO_DATE (t1.end_date, 'mm/dd/yy'),
                                    'fmDay'
                                   ) AS end_day,
                           t2.sample_id_1, t2.cin_data_id,
                           t2.end_intv_time, ROW_NUMBER () OVER (PARTITION BY t2.sample_id_1 ORDER BY t2.cin_data_id)
                                 - 1           -- Added
                                                                            AS rn,
                           COUNT (t2.cin_data_id) OVER (PARTITION BY t2.sample_id_1)
                                                                           AS cnt,
                           t1.weekend_flag
                      FROM sample t1,
                           weekend t2
                     WHERE t1.sample_id = t2.sample_id_1
                       AND t1.weekend_flag = 'Y') t)
     WHERE TRIM (weekday) IN ('Friday', 'Saturday', 'Sunday')
       AND nbr = '000097117011'
    

    To view the actual end time, add one hour before posting.

    What happens if you are missing a row for some reason any? Just using ROW_NUMBER won't take the missing line into account. It would be preferable to derive the time of the end_intc_timecolumn. Of course, it would be even better to store the date and time ending in a DATE column all the way.

    I hope that answers your question.
    If not, post a small example of data (CREATE TABLE and only relevant columns, INSERT statements) for all tables and also post the results desired from these data.
    Explain, using specific examples, how you get these results from these data.
    You must not post a lot of data: 6 hours, ending at midnight Monday, should be enough to show the problem and its solution.

    Always tell what version of Oracle you are using.

  • I need help in creating one (Table / Grid) using Flash Builder (not a datagrid)

    I'm looking for a way to create a dynamic table / grid somewhat like a sheet or spread html table. but I want to create all the cells via a loop.

    The following diagram was created using php to execute a loop and writing on the cells and the duration for each cell in the grid/table. But I have no idea where to start in flash builder to build something like this.

    Some cells will last 2 to 4 columns as shown in the following diagram.

    grid-table.gif

    Any suggestions on how to create this type of table or grid in Flash Builder?

    I looked through most of the components, but I'm not sure which component to use.

    Help in this would be greatly appreciated.

    Thank you to

    Maurice

    It's ok, I thought about it.

    just by using containers grid Flash builder 4.5

  • I have the most recent Acrobat and Excel on a new computer. On top of my old computer, my old Excel sheet, I used to have a tab for Acrobat, which, once clicked would give me one of the options for creating and attach to the e-mail. I need help with this

    Read above.

    You must ensure that you have version 11.0.1 or higher to make it compatible with Office 2013.

    If this is the case, then try to run a repair installation.

    This is not the latest version of Acrobat, said by the way. Acrobat CC is the latest version.

  • Hi, I need help with this

    OK, so I use flash programming of course and I am trying to initialize a collision for a roof he says that collision has not been declared.

    I have

    import flash.display.MovieClip;

    import flash.events.KeyboardEvent;

    import flash.ui.Keyboard;

    import flash.events.Event;

    SerializableAttribute public class Main_Ninja extends MovieClip

    {

    var vx:int;

    var vy:int;

    var: score: uint;

    var collisionHasOccurred:Boolean;

    var playerHasMoney:Boolean;

    I am trying to initialize

    Collision.Block (player, roof);

    but when I try to initialize it gets stuck in an infinite loop for this

    If (player.hitTestObject (enemy))

    {

    enemy.gotoAndStop (2);

    -Health.meter.Width;

    If (! collisionHasOccurred)

    {

    Note ++;

    messageDisplay.text = String (score);

    collisionHasOccurred = true;

    }

    }

    on the other

    {

    enemy.gotoAndStop (1);

    collisionHasOccurred = false;

    }

    Please help me if you can.

    'about the same' does not work when it comes to executable code.  You can miss one, which seems to make you a little detail and completely break your code so that nothing works.

    're missing you something.  for example, whoever you are, probably, the copy has a file (named Collision.as) in their class path.  you need this file.

  • I need help finding this hard drive HP

    I'll try to find a second hard drive corresponding to buy for my laptop but I can't find it on the hp website. I have not spent one hour and no luck, geese. in any case, my laptop computer and a hard drive is:

    HP dv7-6c95dx

    750 GB HDD at 5400 RPM with HP ProtectSmart hard drive Protection

    I want to get another hard drive, exactly like the one above, so the two hard drives are a matching pair.

    Then I have to find the special cable for it, yes an another headache. any help would be a great guy, thank you...

    Maintenance & Service dv7 notebook guidehas the information you need. See the list of parts shown for the part number.

    From the Manual:

    Supports the following double hard drive
    configurations:
    ● 2 TB: (1 TB, 5400 RPM, 12.5 mm × 2)
    ● 1500 GB: (750 GB, 7200 RPM, 9.5 mm × 2)
    ● 1500 GB: (750 GB, 5400 RPM, 9.5 mm × 2)
    ● 1 TB: (500 GB, 5400 RPM, 9.5 mm × 2)

    Hard drive (2, 2.5-inch, SATA, does not include support, connection cable, Shield of Mylar or screw):

    1 TB 5400 RPM, 12.7 mm 638974-001
    750 GB, 7200 RPM, 9.5 mm 633252-001
    750 GB, 5400 RPM, 9.5 mm 634250-001
    640 GB, 5400 RPM, 9.5 mm 603785-001
    500 GB, 7200 RPM, 9.5 mm 608218-001
    500 GB, 5400 RPM, 9.5 mm 634932-001
    320 GB, 7200 RPM, 9.5 mm 634862-001
    320 GB, 5400 RPM, 9.5 mm 622643-001

    Hard disk hardware kit (not shown, includes support, connector cable, Mylar)
    Shield and screws) 665597-001

    You can order parts by parts HP online store. You can save some money by ordering identical pieces from another provider online.

  • Need help with this VI

    I don't know what to do after the generation of random numbers in the table. I think that you log the random function in one for a loop and plug it on the table to put the random numbers in the table. I don't know what that means "M of n by L dimensions."

    My apologies, because, I learned much of this.

    «Develop a LabVIEW VI that will generate a 3D Board of M by N by L dimensions (all the user set integer values).» Then the VI will fill the table with random numbers between 0 and 10 and show. In addition, the VI should determine the maximum number in the table and its index location (layer, line and column) in the table. Finally the minimum location and index should also be. The whole production should beincluded in a group called "output".

    Thank you for any kind of help.


  • I just had the MG5422 and need help. This model is not listed here or anywhere else!

    I did the best I could with the incredibly bad English all install and operate. It connects to my router with no problems. My laptop is connected to my router. After that, there are no instructions. Nor the other sees. Now what? I get only stuck in a loop that says to connect it to the USB cable. IT DOES NOT INCLUDE A USB CABLE! If it is necessary to operate the machine, why it's not listed?

    Hi StormKatt!

    PIXMA MG5422 does not come with a USB cable and I checked, but we have these available to send you or I would do it.  What you need is a USB B cable standard has this implemented via a wireless connection.  If you have a WPS enabled router, then you can use one of them to put in place.  What this means is supported on the the router WPS button.  If you do not have one of them, should be a USB cable.  They are available at your local office supply store.

    Canon took the decision not to include the latter with their printers.  What I will do is pass your message along to my superiors so that they can read them on your dissatisfaction with this.

    They are also available through our sales department.  Our sales department can be reached by calling 800-828-4040.  They are open from Monday to Sunday from 08:00 to 12 a.m. EST (except holidays).  Be sure to choose the option to order accessories to make sure you get to the appropriate Department.

    If you want to that specific instructions on how to put up with WPS and USB, just reply with the operating system installed on your computer.

Maybe you are looking for

  • How can I turn pop-up blocker on or off in the browser?

    my email will not let me view attachments

  • Lenovo Yoga stays on

    I have a 10 of Yoga for only 1 month and it's just broken while I was playing Scrabble.It stays on. I can't close, nothing happens. I don't have phone several times for the frenc service today and no response. I don't know to do whqt. Maybe you can s

  • X 1 screen of blue carbon

    Hello I bought the X 1 carbon (type 3460xxxx) two months ago and it crashed with blue screen 10 times already... Error details: Signature of the problem:Problem event name: BlueScreenOS version: 6.1.7601.2.1.0.256.48Locale ID: 1061 More information a

  • Type of change VeriStand system channel

    Hello I've developed a VeriStand project and I was wondering if anyone has any ideas on how I can change the types of channels in the system of double uint32, or uint64. I see that there is a .net NationalInstruments.VeriStand.Data object that has th

  • The number of mobile phone to check my Hotmail account is incorrect.

    The number of mobile phone to check my Hotmail account is incorrect.  I made a mistake when entering it and I want to put the correct mobile number registration