selectedIndex and valuables

Please please please! was responsible for research and try 1 million for everyday things and can not understand this...

I have a custom data grid component that displays the results of a call to the remote object at a cfc in a custom container. When the user clicks on an item I want to fill out form elements in a form container located in the custom container (and NOT a separate custom component). I created a class called Employee value object (actually the CF Wizard) in a file called Employee.as.

In the custom container I import the employee as such class: import model. Employee.

In the initialize the custom container handler, I create an instance of the class employee as such:
oEmployee = new Employee();

In the click event handler of the custom datagrid component manager I want to fill the object oEmployee with the registration of the user has clicked on this title: oEmployee = myGrid.selectedItem as an employee.

The above code compiles fine. But when I click on the grid I get the error "object no has no properties". This didn'; t tell me much, so I changed the code to use the AS2 casting as such code:
oEmployee = Employee (myGrid.selectedItem)

It compiles also throws very well time ar was able to run this error:
Type coercion failed: cannot convert Object@9a00b01 to the model. Employee.

I thought I saw examples somewhere of a person by passing a selectedItem to a custom class object, but I can't make it work. I have to write code like this: oEmployee.first_name = myGrid.selectedIndex.first_name? My VO has a lot of data in it and it would be tedious. Only, I could work around the whole thing of vo and easy to write:
myFormItem.first_name = myGrid.selectedItem.first_name but one) that doesn'; t promote loose coupling between components generic and b) I want to use this data in the vo oEmployee to switch to a cfc in a recording method.

Thanks in advance for any help on this!


Thank you, Tracy. In fact your first answer helped me solve the problem. It triggered something that I read on the nature of the object that ColdFusion returns a query object. This object can be cast in an ArralyCollection and used as a data provider in a data grid, the object of the selected element it produces is of a very general nature and cannot be cast. So in my ColdFusion CFCS, I loop on my results of the query and transformed the subject of the application in an array of Employee objects with each element in the table corresponding to each row in the result set represented by an instantiation of my Employee.cfc (value object). This array of instances of the employee, this is what happened to Flex. In Flex, then I create a just ArrayCollection bound collection whose source of the attribute is the jailer returned (cast on an array of Flex for good measure) ast the data provider for my grid is used. Now, when a user clicks on a record in the grid of th, the selectedItem object is of type = used and eventhandler for this: oEmployee = resultsGrid.selectedItem as an employee. As long as the Employee.cfc of ColdFusion and flex Emloyee.as class definitions are the same (with respect to properties), oEmloyee will be magically filled with data of the selectedItem object.

I don't have any have how it works because my Emloyee.as class file has no getters or setters defined. But then again, primitive man learned quickly not to fire quesiton either, huh?

Tags: Flex

Similar Questions

  • Get the value of the drop-down list (selectedIndex) and the text field - does not

    Hi all

    I'm trying to find and change the values selected by the user using a drop-down list and text field. Here's the code.

    ChangeRevDetails();
    function ChangeRevDetails(){
    
    
              var myDialog = app.dialogs.add({name:"Enter copyright information"});
    
    
    //    var monthlist = col1.dropdowns.add('myList', undefined, myList);
    
    
              var col1 = myDialog.dialogColumns.add();
              var col2 = myDialog.dialogColumns.add();
      
        col1.staticTexts.add({staticLabel:"Month:"});
              col1.staticTexts.add({staticLabel:"Year:"});
        col1.staticTexts.add({staticLabel:"Rev. no.:"});
        
        var myList = [ "January", "February",  "March", "April", "March", "April", "May", "June", "July", "August", "Sepetember", "October", "November", "December" ];
    
    
         var myMonth = col2.dropdowns.add({stringList:myList, selectedIndex:0, minWidth:100});//{minWidth:100});
         var myYear = col2.textEditboxes.add({editContents:"2013", minWidth:100});   
         var MyRev = col2.textEditboxes.add({minWidth:100});
    
    
        var RevMonth = (myList [myMonth.selectedIndex]);
        var RevYear = myYear.editContents;
        var RevNumber = MyRev.editContents;
        var RevToReplace1 = RevMonth +", "+ RevYear;
        var RevToReplace2 = RevMonth +", "+ RevYear + " Rev. " + RevNumber;
    
    
        var myResult = myDialog.show();
    
    
            if(myYear.editContents == "") //entry is "" 
            { 
            alert("Please enter some text into the contents field."); 
            ChangeRevDetails(); 
            }
            else if(myResult == true) //user entered datas 
            { 
    
    
                alert (RevMonth);
                alert (RevYear);
                alert (RevNumber);
                alert (RevToReplace1);
                alert (RevToReplace2);
    
    
                app.findGrepPreferences = NothingEnum.nothing;
                app.changeGrepPreferences = NothingEnum.nothing;
    
    
                // grep find/change
                app.findGrepPreferences = app.changeGrepPreferences = null;       
                app.findGrepPreferences.findWhat = "[\\l\\u]+?\\s?\\d{4},?\\s+[\\l\\u]+\\.*\\s+\\d+";
                app.findGrepPreferences.appliedParagraphStyle = app.activeDocument.paragraphStyleGroups.item("Back page"). paragraphStyles.item("Legal_7/9");
                app.changeGrepPreferences.changeTo = RevToReplace1;
                app.changeGrepPreferences.appliedParagraphStyle = app.activeDocument.paragraphStyleGroups.item("Back page"). paragraphStyles.item("Legal_7/9");
                app.activeDocument.changeGrep();
    
    
                app.findGrepPreferences = NothingEnum.nothing;
                app.changeGrepPreferences = NothingEnum.nothing;
      
        } 
        else //implies user clicked cancel 
        { 
        myDialog.destroy(); 
        }
    
    
    }
    
    

    The problem is, it does not take the value that the user selects in the drop-down list and the text field. It takes the default value as "January" and the year is '2013' as these two values are given as selectedIndex:0 and editContents: "2013". I compared the coding with a few other scripts work as well, but it does not work. I added several alert boxes to check the value we get.

    In addition, search for it and change also does not work. Please help me on this. Thank you.

    Kind regards

    Bachi. D

    Change the order of dialogresults:

    ...

    var myYear = col2.textEditboxes.add ({editContents: "2013", minWidth:100});})
    var MyRev = col2.textEditboxes.add({minWidth:100});)
    Ditto var = myDialog.show ();
        If (myYear.editContents == "") //entry is «»
        {
        Alert ("Please enter a text in the content field.");
        ChangeRevDetails();
        }
        else //user entered if(myResult == true) datas
        {
    var RevMonth = (myList [myMonth.selectedIndex]);
    var RevYear = myYear.editContents;
    var RevNumber = MyRev.editContents;
    "var RevToReplace1 = RevMonth + ', '+ RevYear;

    "var RevToReplace2 = RevMonth + ', '+ RevYear + 'Rev' + RevNumber;

    ...

    did not have a look for the problem of change to find

  • ViewStack Set SelectedIndex and datagrid SelectedIndex in a single click.

    Hello
    Please help me. I have a viewstack with canvas 4 (pages). The first is as an index, with images with the 'click' action that needs to do this:
    1. the viewstack selectedIndex value 1, 2, or 3
    2. set the selectedIndex property of a datagrid which lie in the canvas, 2, 3 or 4 of the viewstack.

    I tried with:
    "< mx:Image '415' = x y ="26"source="assets/imgs/inicio/dno_01.jpg "click ="pages.selectedIndex = 2; dataGrid1.SelectedIndex = 2; "/ >

    and with

    : < mx:Script >
    <! [CDATA]
    private function circ_01 (): void {}
    pages.selectedIndex = 1;
    gridProyectos.selectedIndex = 5;
    }
    []] >
    < / mx:Script >
    "< mx:Image '331' = x y ="26"source="assets/imgs/inicio/arq_01.jpg "height ="69"width ="69"click ="circ_01 (); "/ >

    but the first time I click only define canvas page viewstack, but not the index on the data grid. BUT the second time I click I put the viewstack/canvas page and index in the datagrid control.

    I really don't understand.

    Thank you very much!

    I guess the problem is that objects in paintings are not instantiated until they are displayed for the first time.
    So, what you probably want to set the index of a datagrid control that has not yet been created.

    You may use the creationComplete event in each canvas to change the index of the grid?
    Or maybe you could hang something up to the outbreak of childIndexChange of the view stack.

    HTH / Culme

  • If I Upgrade to fire fox 4 will be my saved passwords and brands booked be moved above the old firefox

    As in the Question, if I update to the new version, all my contact information are moved from the old version to the new, for example

    User names
    Passwords
    Bookmarks
    Records

    That shouldn't be a problem, but is always a good idea to have a backup of important and valuable profile data.

  • HELP computer laptop has frozen with power on a black screen and flashing lights

    Hi I have HP Pavilion dv 7-3162nr laptop. When I turned it on all the lights have gone but the screen was completely black. To add, the shift lock and numlock began to Flash all 3 secends. I have no idea why my laptop that was, but pls pls HELP all my tests and valuable information on the laptop. I'm dead without him! Thank you!

    Hello

    Try a Hard Reset as follows.

    Shut down the laptop, unplug the AC adapter and then remove the battery.  Press and hold the Power button for 30 seconds.  Reinsert the battery, connect the AC adapter and see if the laptop boots.

    If the above doesn't help, see if you can match the sequence of "Flashes" to those shown in the table below.

    Kind regards

    DP - K

  • Cleaning of PC - HELP Please! What do I NEED and what can GO.

    Hi all

    I'm just trying to clean my PC a bit, but have no idea of what I need to keep and what can go.
    First of all, I need WinRAR?
    And second, what are the other programs that tend to find a way to settle on your pc when your not very technical can think of deleting?
    I have download the occasional film or both, but not much. Very rarely that I download a game, and I try not to clutter my laptop so I listen to music on youtube rather than download that, too.
    I use bit torrent and extra torrent for download. The best suggestions?

    I use open office as my laptop didn't come with microsoft office, and yet I found a file called "Compatibiliy pack for the 2007 Office system" and wonder why I have because I do not use microsoft office, so can spend?

    So far, I've kept all the files with Microsoft as long as editor thinking I have to need.

    In addition, Cisco (?) is here... What is everything?

    I just ordered my internet explorer 8 after installing Microsoft Security Essentials (which has proposed moving to explore 8) and also followed the advice to uninstall my other programs scan virus (Mc McAfee & AVG)

    All the tips, everyone please?

    Thanks in advance,

    T. Sprate

    Hello ADVENT Roma.

    Thank you for the Microsoft Community approach. I understand you have questions of optimization of Windows 7. I will certainly help the question of fixing.

    I suggest you follow these links to find out how to clean your PC and make your PC run faster.

    Delete files using disk cleanup

    How to make a computer faster: 6 ways to speed up your PC

    WinRAR is a powerful compression tool with many integrated additional functions to help you organize your compressed archives. WinRAR puts you ahead of the crowd when it comes to compression. By consistently creating smaller archives, WinRAR is often faster than the competition. This will save you disc space, transmission costs AND valuable time to work as well.

    Refer to this link to Remarks of WinRAR provides you information about WinRAR.

    You can use any program to download movies and other programs. I suggest you to check the feedback from the user via internet and then use the recommended.

    About the Office, I suggest you to buy a full version and use it.

    See the link http://office.microsoft.com/en-in/ learn more about the office.

    If you use a Cisco router then you may have the Cisco software installed on your computer.

    It is recommended to use any security on your computer software, who meet in the best protection against the virus.

    By default, Windows 7 Internet Explorer 8, you have upgraded to Internet Explorer 8 to 9?

    I hope that gives you some answers to your question. If you have other questions about Windows post us in the Microsoft community. We are happy to help you.

  • Problem with join request and left sub ORA-01799

    Hi all

    I am currently working on the following query and I get an error when you use a left join (mandatiry in my case), in good and due place of a join.

    Error message describes the case, but I need to make it work.

    No idea how I can make this one for a left join job?

    Select a.dco, a.agsa, a.agem, a.agde, a.ope, a.eve, a.tpr, a.nat,

    a.Age, a.dev, a.ncp, a.suf, a.sen, a.dva, a.mon, a.lib, c.cli, e.age as kage,

    e.OPE as kope, e.eve as kévé, e.dev as kdev, e.dech, e.ndos, e.tcai3, e.nump, e.natp, e.lib1,

    e.nom2, e.dev2, e.ncp2, e.age1, e.ncp1, e.dev1, e.nom1, e.nomb, e.etab, e.comb,

    e.AGE2, e.nomp, e.lib2, e.lib3, e.lib4, e.lib5, e.lib6, e.lib7, e.lib8, e.lib9, e.dva2,

    e.mht as e.agsa as kagsa, e.mcai3, e.tcai2, e.refdos, e.mnat, d.cur_char, kmht

    of bkmvtg_mi one

    Join bkcom c on a.age = c.age and a.dev = c.dev and a.ncp = c.ncp and a.suf = c.suf

    e left join on (e.age = bkeve_mi

    CASES (select nvl (trim (zon1), 'age') in the cpjoilib where nomtab = 'bkeve' and nat = a.nat and zon2 = 'age')

    WHEN "age" THEN a.age

    WHEN "real" THEN a.agem

    WHEN 'agsa' THEN a.agsa

    WHEN 'agde' THEN a.agde

    Of OTHER a.age

    END

    and a.ope = e.ope and a.eve = e.eve)

    e.CSP4 left join sgsbwb_currency d = d.cur_num

    where exists (select * from sc sgsbwb_client where c.cli = sc.customer_number and ready = 1).

    and exists (select * from sgsbwb_pdt sp where c.cpro = sp.c_pro);

    ORA-01799:

    01799 00000 - "a column cannot be reached outside to a subquery.

    * Cause: < expression > (+) < relop > (< subquery >) is not allowed.

    * Action: Either delete the or make a view of the subquery.

    In V6 and with of the was simply ignored in this case.

    Thanks for your help and valuable advice

    Best regards

    Jérôme

    You must activate the application in that case there in a join.  I used an outer join below because that mimics the effect of your expression, but if you know that there is always a game between bkmvtg_mi and cpjoilib, then it could be a standard join.

    Select a.dco, a.agsa, a.agem, a.agde, a.ope, a.eve, a.tpr, a.nat,

    a.Age, a.dev, a.ncp, a.suf, a.sen, a.dva, a.mon, a.lib, c.cli, e.age as kage,

    e.OPE as kope, e.eve as kévé, e.dev as kdev, e.dech, e.ndos, e.tcai3, e.nump, e.natp, e.lib1,

    e.nom2, e.dev2, e.ncp2, e.age1, e.ncp1, e.dev1, e.nom1, e.nomb, e.etab, e.comb,

    e.AGE2, e.nomp, e.lib2, e.lib3, e.lib4, e.lib5, e.lib6, e.lib7, e.lib8, e.lib9, e.dva2,

    e.mht as e.agsa as kagsa, e.mcai3, e.tcai2, e.refdos, e.mnat, d.cur_char, kmht

    of bkmvtg_mi one

    Join the bkcom c

    On a.age = c.age and

    a.dev = c.dev and

    a.NCP = c.ncp and

    a.SUF = c.suf

    Join cpjoilib l left

    On a.nat = l.nat and

    l.nomtab = "bkeve" and

    l.zon2 = 'age '.

    Join e bkeve_mi left

    on (e.age = nvl (trim (l.zon1), 'age') CASE

    WHEN "age" THEN a.age

    WHEN "real" THEN a.agem

    WHEN 'agsa' THEN a.agsa

    WHEN 'agde' THEN a.agde

    ELSE a.age END and

    a.OPE = e.ope and

    a.Eve = e.eve)

    left join sgsbwb_currency d

    on e.csp4 = d.cur_num

    where exists (select * from sgsbwb_client sc)

    where c.cli = sc.customer_number and

    ready = 1) and

    There are (select * from sgsbwb_pdt sp)

    where c.cpro = sp.c_pro);

    John

  • Child and Parent of MovieClip - Visible property-

    If it is an object is placed on the stage named 'square' and with the main document class object has been added to with addchild, 'square', if I wanted the place to not be visible, but always to be the parent, while the new object added to 'square' has been made visible, how would get you there?

    My tests:

    It seems that if you set the parent to 'false' visibility and then try to set the visibility of the child to 'true' she disregards this request because the visibility of the parent replaces it, so the entire movieclip object remains completely invisible.

    It seems that you can make a child becomes invisible, while the parent is visible, but I want to do the opposite.

    The only way I found to do something similar to what you are wanting is to have a 'container' Sprite or Movieclip that contains your parent object and valuables of the child; If your parent is not really a parent and you can manipulate its visibility regardless.

    Otherwise, you could maybe play with your child object's blendMode property and get some sort of masking of the parent, but ultimately, I think it will be better if you simply plan the structure of your project around structure of AS3.

  • Windows 7 and the USBDRVEN. Driver exe

    Anyone with a camera of era Windows older than XP happened to Windows 7 discovered that the USB driver package:

    File name: USBDRVEN. EXE

    Version: n/a

    Last modified: 01/03/2004

    Size: 1.52 MB

    does not work on Windows 7. I worked around this by installing the
    Drivers USB Windows XP and copied the two that are necessary
    (sonypvu1.inf and SONYPVU1. (SYS) and install
    Windows 7 since the Device Manager.

    I downloaded these files to http://www.driverguide.com with step
    instructions step-by-step. In my view, it is always free to join driverguide.

    ... http://members.DriverGuide.com/Driver/d id = 1774366

    If there is a place for the Forum to download the drivers that I will be happy
    Do it.

    It works perfectly with my MVC-FD97 (the two memory stick
    and the floppy drive) if it works for your camera
    Please post the results here for future reference.

    Jim T.

    Thank you for your message and valuable information.

  • Re: What is the Toshiba Recovery disk would cost?

    Thank you very much for your timely and valuable contributions.

    I tried the link below
    https://backupmedia.Toshiba.EU/landing.aspx

    and not able to get prices in Indain rupee.

    kindly can you (anyone) help me know,.
    How much does it cost in Indian rupee?

    Thanks in advance!

    I have not quite how it is safe, but I put m t think it s expensive. Maybe something like 30 or 40 Euros

  • Unable to connect/configure PSC 2020 using MAX

    Hello world

    It's something like 'part II' to try to use the serial ports on our PSC 2020.

    I received a lot of help and valuable advice from Ravens Fan and others of the Spanish community in regards to the series, and I really appreciate their help.

    However, just at the point where I was about to make the first test, after you advise them, someone in my Department decided, there are a few days to clear (or format) all the contents of the memory of one of our CFP-2020. In addition, there is an another PSC 2020 which was unused for a long time. Well, the point is that none of the two controllers is seen by MAX, and therefore they cannot be configured by MAX either. Both are simply a blank space (i.e. nothing appears) under remote systems or devices and interfaces or another area in the configuration tree.

    Another important detail, we used an earlier version (4.xx, I guess) and also a newer version (7.x.x, I guess) of MAX trying to win again the communications. None of these versions could not communicate with one of the CFP-2020. In other words, none of these versions could establish communication or to show a sign of life of one of the two controllers. We test the wiring and it worked perfectly with the other PSC 2020 we have in existence.

    I guess that LabVIEW 7.1 or 8.0 (versions that we have) will not be able to communicate with controllers or if MAX has failed before. Am I right?

    Is there another way to see (contact) the CFP-2020?

    Is there a procedure for 'must - after setting shaped' that we are missing?

    This behavior has something to do with the DIP switches in the cFP2020?

    Is it possible to say if controllers are broken (fatal hardware failure) or if it's just a matter of software configuration?

    The deadline to begin a period of testing laboratory with the cfps 2020 is very narrow, and I really need to retrieve both controllers, so I would really appreciate help for this problem.

    Best regards

    I am pleased to have been able to help so far.  Let me see if I can help even more.

    First of all, to find a big stick and go fight anyone who formatted your controller overhead.

    Second, if you don't see anything under remote devices, I'll guess that the controller has been the installation of another IP address on a different subnet than where you are now.  I would try the instructions on page 3-6 of this Manual to reset the IP address.  That set it back on a 0.0.0.0 address who should make them findable by MAX again.

    Thirdly, MAX is up to version 4.6.2 (perhaps under minor version or two later.)  So, I'm not sure "newever version 7.x.x" unless you have a version number of LabVIEW.  Yes, you will certainly get the controller found in MAX before LV can work with it.  Definitely check the DIP switch as safe mode and reset the IP.  It is possible, that there is an incompatibility of drivers fieldpoint between the remote control and your LV version but I think that the two would have to endure somehow offset, otherwise you wouldn't be able to update the fieldpoint drivers in the controller.

    If there is a problem with the controller, I don't know how to determine that.  A person of OR may be able to help.  I think that the most likely scenario is that the last IP address defined for the controller corresponds to the setting for your PC or network, you are now, in which case the IP reset should help that.

  • ENVY DV6-7203TU: I lost my original windows, how can I recover?

    Hello
    I bought the hp laptop with windows 8, ENVY DV6-7203TU original,.
    Recently, I had the problem of the usb, I went to the computer repair shop, he removed my original windows and reinstalled some windows 8.1.
    My original genuine windows was 8 which I later upgraded to windows 8.1 is deleted, I have a few new windows installed 8.1 now not on my name, he has also deleted my recovery partition, but somehow, I could find a screenshot of my old genuine cd key and my name on which it is registered.

    Now I have the cd - key,
    But when I try to install through windows 8/8.1 installation programs, it says bad cd - key for version retailer etc.

    Can someone help me please how can I reinstall my windows genuine 8, if I have the cd key, where can I download the installer of windows 8 oem? where my cd key is considered valid.

    Microsoft has a site where you can download the ISO of Win8.1 images - but it cannot be used for OEM versions - which is what you have.

    Any PC tech with an ounce of intelligence knows that an OEM machine comes preinstalled with an OEM version. So I should be surprised by the huge incompetence of the shop where they "fixed" your PC - but I'm not!  Seems these days, anyone who can be synonymous with PC can open a repair shop - and incalculable damage as a result.

    You have to contact HP for recovery media.  (Very likely), you will have to pay for it, and it is usually about $30 USD - but yours could be different.

    You then starts from (it's probably a DVD or several CDs) and will be reformatted your hard drive, and the operating system reinstalled from scratch with all HP programs and utilities.  Then, you should see what you can do on the registration files and valuable data before you for the restoration.

  • MAX shows no remote system tree tab

    Hi good morning all,

    I installed LabView 2010 and along Max on my laptop OS Visat 4.7.7. Problem that I face, is that my tree MAX 'Remote system' tab is not visible. Only my system tab is visible and its shows all software and peripherals properly.

    1. What are the settings that I need to check to get this tab shown in the tree?

    2. do I need to install other software or patches or re - install the software?

    3. Why is it happening?

    Kindly help me with your valuable experiences.

    Best regards

    Zdzislaw qureshi

    Thank you much at all.

    I'm able to resolve the issue of MAX as well as I needed to uninstall all software of OR and delete their records as well. Then re-installed the software NOR necessary and now everything works OK.

    Dear Patricia, I am able to see real-time in the three recommended positions. For the latest configuration, now I know and remember that I've seen in real-time in LabView front page, rest, I haven't checked that I didn't. Anyway now its solved.

    Once again thank you all for the advice and valuable support.

    Best regards

    Zdzislaw qureshi

  • Can I add mSATA in TouchSmart HP Envy 15-j003tx?

    As noted in the website of HP, the TouchSmart from HP Envy 15-j003tx using the Intel Express HM87 chipset but equipped with HDD 5400 rather slow.

    I am planning to buy the laptop but would like to know if the laptop has extra slot for mSATA or extra SATA HDD slot so I can configure SSD caching for the laptop.

    Thanks for all help. Finally, I ordered the HP Touchsmart 15 j003TX.

    Here is the full story. I had called several laptop dealers near my area, but none of them does not know if the mSATA is supported. I think that they refer to manuals and official specifications which does not clearly specify if the laptop has slot mSATA.

    I saw the notebook in a Harvey Norman near my house. I asked the developer if he can open the back cover of the laptop and let me inspect if mSATA slot is there.

    The friendly developer open the lid back and I saw an empty but I don't know if it's the mSATA slot. I never see mSATA lunge. The location is not label to indicate if the slot is for mSATA. The developer and technicians in Harvey Norman cannot confirm if it is the mSATA slot. They refer to the specifications and official manual and told me that the laptop does not support mSATA.

    I took a picture and do some research with my colleagues. After a few hours of research, we are quite sure that it should be mSATA. In order to make sure it works, I bought a KingMax mSATA SSD 128 GB and return to the shop again. They re - open the back cover and I try to fit the mSATA into the empty slot and it fits perfectly. Turn on the laptop and screen of the BIOS shows the SSD has been detected and Windows 8 as the new mSATA SSD.

    So the conclusion is the envy of HP TouchSmart 15 j003-TX supports mSATA. I immediately ordered the laptop.

    Thanks for all your help and valuable information. And I bought a form correct factors of mSATA SSD. But I miss something, I forgot to collect the mSATA screws.

    In any case, I'm happy with the slot mSATA and portable.

  • HDX16 unknown device?

    High guys,

    My Machine is: FV713EA

    I need help to install the latest driver missing my HDX16-1155EE system.

    I have crossed a clean Vista 64 home premium, active setup, installed all the hp and third-party drivers apart one fromthis.

    Looking in the Device Manager in Control Panel:

    I can see the yellow marked PCI Bus device defined as unknown device. It is the only device on the PCI Bus.

    Below are my system specs:

    http://support.HP.com/us-en/document/c01648296

    So maybe someone who has the same system will be kind enough to help me by going to:

    Panel, Manager of devices: view: device connection. Maybe he or she will be able to tell me the name or to this device under the PCI Bus.

    It is a machine of 2 months used to give me BlueScreenOfDeath 184 in a single day. Config from HP is a joke.

    Thanks for any help

    Al

    Product: FV713EA #ABV

    [email protected]
    4 Gega
    320
    GeForce 9600

    Daniel,

    Thank you very much for the time and valuable effort.

Maybe you are looking for

  • Impossible to send or download messages after update 31.4.0

    Automatic update 31.4.0 on/in respect of 14 January 2015 caused my installation does not send and receive messages. Initial program load and subsequent applications to get messages anywhere: display of the progression in the footer shows "[acct name]

  • Firefox reduced when the new tab is open

    When I open some links that open in a new tab (for example my bank statement has an option 'printable version' and when I click on this link and it will open in a new tab) firefox suddenly minimizes and becomes much smaller. I have to maximize the sc

  • Restore the files backed up on another computer

    I have two PCs. an office and the other at home. I took the backup on USB to the desktop and I tried to restore to the home pc. Home PC has window7. I couldn't restore the backup file to myhome pc. Although provied want me a solution

  • New hard drive, stripped of HP laptop 7010, Svc XP applications Office of Pk 3__Need

    Hi, my system crashed, put in a new hard drive repair guy, but I do not have any office software, I can't locate the CD of the pre-installed software provided with the system in 2004.  The product key is on the bottom of my laptop. I'm not too comput

  • transfer rate what is data from disk

    When I check my note to my computer, I notice that disk data transfer rate is the smallest number. Could someone tell me what this means and how I improve it. Thank you