Comparing nodes in two xml files

I need help with a flex application, I do. My level of skill in flex is a bit basic, so some of the questions may seem easy, but they are not for me

I need an application that will allow to load two external xml files and to compare nodes. Xml files are almost identical except for the values ofcourse. After that, I need to write the data to a new xml file that generates my flex application. Can someone give me please an example code which I can edit later for my own application. Can you give me any example with simpler xml files.

Thanks in advance

"for in" and "foreach in ' statements can be used to iterate over the nodes. If two xml files are of the same structure, you can easily compare the attributes of the node. Here is the link to the livedocs page for loop through the xml nodes

http://livedocs.Adobe.com/Flex/3/HTML/Help.HTML?content=13_Working_with_XML_08.html

Create string xml

http://www.CFLEX.NET/showFileDetails.cfm?channelId=1&ObjectID=784

Post edited by: Subeesh Arakkan

Tags: Flex

Similar Questions

  • My event.result may or may not return a node in the xml file. How can I avoid that TypeError: Error #1009:

    My event.result may or may not return a node in the xml file. How can I avoid that TypeError: Error #1009: cannot access a property or method of a null object reference.

    I have a very simple question. I want to take the value of

    Event.Result.Item.nodeindex1.nodeindex2.Row.MyValue;

    and assign it to a text field

    mytextTi.text = event.result.item.nodeindex1.nodeindex2.row.myvalue;

    But if a part of the tree is missing, which is also valid, so I get TypeError: Error #1009: cannot access a property or method of a null object reference.

    I tried various solutions such as the following. Is there any simple way to do this?

    If (event.result.item.nodeindex1.nodeindex2.row.myvalue! = undefined)-does not work

    Unfortunately, one must test all levels to ensure that it is not null before the reference to it. You can take advantage of the short-circuit evaluation in tying together, for example

    if (event.result.item
        && event.result.item.nodeindex1
        && event.result.item.nodeindex1.nodeindex2
        && event.result.item.nodeindex1.nodeindex2.row
        && event.result.item.nodeindex1.nodeindex2.row.myvalue)
    {
        // access the variable
    }
    else
    {
        // one of the XML nodes in the path is null
    }
    

    Or you could stay away from her a little hacky and wrap the reference in a try/catch block.

    -Tom

    Flex SDK engineer

  • Retrieve / search a specific node of the XML file

    Hello

    I have a question about reading the XML (search) in PL SQL file:

    There is an XML file with the following structure:
    <root>
      <Hnode1 attr1="value1" />
      <Hnode2 attr1="value1" /> 
         <node1_of_Hnode2 id="10" personname="Steven"/>
         <node2_of_Hnode2 id="20" personname="Christian"/>
         <node3_of_Hnode2 id="30" personname="Arnold"/>
         .
         .
      <Hnode2/>
    <root/>
    How it is possible to filter a node by one of its attribute value. For example:
    The id of a person - I guess that id = 20. In this case I would like to get the whole node (in this case node2_of_Hnode2) to get the personname = > 'Christian '.
    Just like a SELECT statement (WHERE ID = 20)

    Is it possible to get it in a single order or should it be buckled on all the lines in the Document. Can you please provide an example for me.

    Thank you for advice!

    The basic version is 10.

    Sorry, this is not a version.
    For example:

    SQL> select * from v$version;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE     10.2.0.5.0     Production
    TNS for 64-bit Windows: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - Production
     
    

    The use of the extraction of the values?
    1. better in a Select statement. assignment directli in a variable, or by using the xmlquery function?

    PL/SQL or SQL calls to the XMLType methods such as getStringVal() or extract() function should be equivalent (save the change of context).
    However, none of them are the right way to retrieve a scalar value of a given node.
    You must use the rather extractValue() function (SQL only) for immediate release< 11.2="" and="" xmlcast/xmlquery="" starting="" with="">

    Another Question:

    I've seen a lot of options for dealing with XML files.

    In my case only query data in XML files is relevant.

    I've seen to many API called XMLDOM, DMBS_XMLDOM, XMLTYPE...

    When to use these APIs. Can you give me feedback on this please?

    It is a broad topic.
    An appropriate response will depend on your condition.

    -You have to deal with large files and if so what size?
    -Performance/memory management is a concern for you?
    -You want to extract unique values or process the XML content in the form of relational data?

    If you have any specific test cases to show us, please post in the {forum: id = 34} forum and make sure to include all the necessary details (see the FAQ).

    Published by: odie_63 on 23 Feb. 2012 11:35

  • I can compare text in two pdf files?

    If it is possible to compare the text of two pdf files, let know how to do it.

    I use Acrobat 8 Professional.

    Thank you very much!!

    If the two files are PDF text files (not images of text) and the two are not created by LiveCycle Designer, you can use it in the menu "Advanced => Compare Documents...". ».

  • Choose between two xml file date ranges

    Hello

    I have a date_ of column with the VARCHAR2 data type (150) it stores

    data in the form of
    19/05/2010 11:23
    20/05/2010 12:23
    22/05/2010 11:23
    25/05/2010 11:23


    I have to select all the lines between the 19/05/2010 and 22/05/2010 how do that this column found in the xml file

    Manaat wrote:
    2010-05-22 11:23 data is stored like this now, and the previous thing does not work on this format.

    So I guess you need to adjust the format.

    Something like:

    AND trunc( to_date( date_ , 'MM/DD/YYYY HH:MI AM' ) ) BETWEEN to_date('05192010','MMDDYYYY') AND to_date('05212010','MMDDYYYY')
    
  • Add the node to the xml file

    Hello

    I'm trying to scan a file xml in the following way:

    // read the content
        var xml_file = File(xml_file_path);
        xml_file.open('r');
        var content = xml_file.read();
        xml_file.close();
    
        // add the node
        var root = new XML(content);
        var unit_test_resolution = <unit-test>{resolution}</unit-test>;
        root.appendChild(unit_test_resolution);
    
        // replace the file
        var my_file = new File(xml_file_path);
        var edit_content = root.toXMLString();
        my_file.open('w');
        my_file.writeln('<?xml version="1.0" encoding="UTF-8"?>');
        my_file.writeln(edit_content);
    

    I'm not sure it's a good solution can someone help me? For example, my file already has the ' <? XML version = "1.0" encoding = "UTF-8"? > ' header. But if I read it this way I must put it each time egain...

    Thank you in advance for your help.

    Best regards.
    Bastien

    It's xtools/xlib/stdlib.js. I used it to manage my file xml reading and writing for several years.

    Stdlib.readXMLFile = function(fptr) {
      var rc;
      var file = Stdlib.convertFptr(fptr);
      if (!file.exists) {
        Error.runtimeError(48); // File/Folder does not exist
      }
      file.encoding = "UTF8";
      file.lineFeed = "unix";
      rc = file.open("r", "TEXT", "????");
      if (!rc && Stdlib.IOEXCEPTIONS_ENABLED) {
        Error.runtimeError(Stdlib.IO_ERROR_CODE, Stdlib.fileError(file));
      }
      var str = file.read();
      rc = file.close();
      if (!rc && Stdlib.IOEXCEPTIONS_ENABLED) {
        Error.runtimeError(Stdlib.IO_ERROR_CODE, Stdlib.fileError(file));
      }
      return new XML(str);
    };
    Stdlib.writeXMLFile = function(fptr, xml) {
      var rc;
      if (!(xml instanceof XML)) {
        Error.runtimeError(19, "xml"); // "Bad XML parameter";
      }
      var file = Stdlib.convertFptr(fptr);
      file.encoding = "UTF8";
      rc = file.open("w", "TEXT", "????");
      if (!rc && Stdlib.IOEXCEPTIONS_ENABLED) {
        Error.runtimeError(Stdlib.IO_ERROR_CODE, Stdlib.fileError(file));
      }
      // unicode signature, this is UTF16 but will convert to UTF8 "EF BB BF"
      // optional
      //file.write("\uFEFF");
      file.lineFeed = "unix";
      file.writeln('');
      rc = file.write(xml.toXMLString());
      if (!rc && Stdlib.IOEXCEPTIONS_ENABLED) {
        Error.runtimeError(Stdlib.IO_ERROR_CODE, Stdlib.fileError(file));
      }
      rc = file.close();
      if (!rc && Stdlib.IOEXCEPTIONS_ENABLED) {
        Error.runtimeError(Stdlib.IO_ERROR_CODE, Stdlib.fileError(file));
      }
      return file;
    };
    

    A lot of paranoia coding in there, but after having done PSJS coding for a decade or so paranoia is a more secure state of mind.

    X

  • How to check if a node exists in the XML file?

    I was asked to program a method to import data from xml files in our Coldfusion 8 Web site, I am new to the use of XML.

    My method worked however I encountered the following error:

    Element NETWORKORDER. SECONDARYADDRESS. CONTACTNAME is undefined in MYDOC.

    Investigation on the node in the XML file was not present.

    Is there a method I can use to resolve this error by checking if a node exists in the xml file, which works with my current code below?

    <!--> reading XML file
    < cffile action = "read" file = "D:\website\XML\#FileName#" variable = "myxml" >
    < cfset mydoc = XmlParse (myxml) >

    <!--> to extract data from the XML of NDS file
    < cfset aPrimaryContactName =(#mydoc.NetworkOrder.PrimaryAddress.ContactName#) >
    < cfset aPrimaryContactNumber =(#mydoc.NetworkOrder.PrimaryAddress.ContactNumber#) >
    < cfset aPrimaryContactNumber = tostring(#mydoc.NetworkOrder.PrimaryAddress.ContactNumber#) >
    < cfset aPrimaryContactAddressLine1 =(#mydoc.NetworkOrder.PrimaryAddress.line1#) >
    < cfset aPrimaryContactAddressLine2 =(#mydoc.NetworkOrder.PrimaryAddress.line2#) >
    < cfset aPrimaryContactAddressLine3 =(#mydoc.NetworkOrder.PrimaryAddress.line3#) >
    < cfset aPrimaryContactAddressLine4 =(#mydoc.NetworkOrder.PrimaryAddress.line4#) >
    < cfset aPrimaryContactAddressLine5 =(#mydoc.NetworkOrder.PrimaryAddress.line5#) >
    < cfset aPrimaryContactCity =(#mydoc.NetworkOrder.PrimaryAddress.City#) >
    < cfset aPrimaryContactPostcode =(#mydoc.NetworkOrder.PrimaryAddress.PostalCode#) >
    < cfset aPrimaryContactCounty =(#mydoc.NetworkOrder.PrimaryAddress.CountrySubdivision#) >
    < cfset aPrimaryContactCountryCode =(#mydoc.NetworkOrder.PrimaryAddress.CountryCode#) >
    < cfset aPrimaryContactCountry =(#mydoc.NetworkOrder.SecondaryAddress.Country#) >
    < cfset aSecondaryContactName =(#mydoc.NetworkOrder.SecondaryAddress.ContactName#) >
    < cfset aSecondaryAttentionOfName =(#mydoc.NetworkOrder.SecondaryAddress.AttentionOfName#) >
    < cfset aSecondaryContactNumber =(#mydoc.NetworkOrder.SecondaryAddress.ContactNumber#) >
    < cfset aSecondaryContactAddressLine1 =(#mydoc.NetworkOrder.SecondaryAddress.line1#) >
    < cfset aSecondaryContactAddressLine2 =(#mydoc.NetworkOrder.SecondaryAddress.line2#) >
    < cfset aSecondaryContactAddressLine3 =(#mydoc.NetworkOrder.SecondaryAddress.line3#) >
    < cfset aSecondaryContactAddressLine4 =(#mydoc.NetworkOrder.SecondaryAddress.line4#) >
    < cfset aSecondaryContactAddressLine5 =(#mydoc.NetworkOrder.SecondaryAddress.line5#) >
    < cfset aSecondaryContactCity =(#mydoc.NetworkOrder.SecondaryAddress.City#) >
    < cfset aSecondaryContactPostcode =(#mydoc.NetworkOrder.SecondaryAddress.PostalCode#) >
    < cfset aSecondaryContactCounty =(#mydoc.NetworkOrder.SecondaryAddress.CountrySubdivision#) >
    < cfset aSecondaryContactCountryCode =(#mydoc.NetworkOrder.SecondaryAddress.CountryCode#) >
    < cfset aSecondaryContactCountry =(#mydoc.NetworkOrder.SecondaryAddress.Country#) >

    Since you already have the XML parsed in a document, the easiest is to use xmlSearch(). Take a look at the doc, it is pretty easy to use. Something as simple as:

    To the most complex as:

    And in both cases:

    Read the doc and google is your friend "coldfusion xmlsearch.

  • Difference between xml files

    I found that I have somehow created a duplicate iTunes folder that caused problems with my music.  I am now fixing that but noticed that I seem to have two xml file.  One called iTunes Library.xml and iTunes Music Library.xml called.

    Can someone tell me what the difference is and what they do?  Should I have them both?

    I also seem to have a file called Itunessetup.exe.  He said that it is a windows file, but I use a mac.  Should it be there?

    Now the Windows files must be present.

    The Music Library.xml iTunes library file is the old name for the .xml and if you look at it you will probably see that it is several years old.  In fact, you need not or .xml. iTunes has never used, he created them only for other applications to use and if you do not have those in need, then you don't really have. Elsewhere the news versions of iTunes are not even them unless you turn it on in preferences.

  • HP Officejet 6700 desktop program installed displays text xml files using

    Afer, install the drivers and the printer software on 64 bit Windows 7 Pro, the shortcut on the desktop and start menu entry "HP Officejet 6700' returns the text for the XML files .  When the icon is first you click a window asked me to choose which installed printer, and then displays the two xml files.  The first file is called 'HPSPProgress' the second 'HPSolutionPortal' using windows Notepad.

    The shortcut pointing to the following text:

    "C:\Program HP HP Officejet Officejet 6700.exe 6700\Bin\HP" - launch UDCDevicePage

    Web and print based access drivers will work perfectly, and the HP Scan program office works very well also. All the functions of the printer work properly. But this program installed a desktop will not work.

    I uninstalled, rebooted and reinstalled several times as an administrator and with various parameters compatibility without success.  I tried to install the CD as well as on the internet with the same result.

    Advice please.

    Hey,.

    I would recommend running the fix for the patch posted by Kyle_W in the 4th message from the thread linked below.

    http://h30434.www3.HP.com/T5/notebook-operating-systems-e-g-Windows-8-and-software/officejetpro-8600-solution-Portal-Displays-HTML-code-in/TD-p/2489011

    Let me know if this solves your problem,

    Jason

  • Generation of XML files in oracle procedure

    I have to generate a SQL query as XML files:

    • If the number of records in the query result exceeds 40 000 then the data must be divided into two XML files with different file names.

    Following XML file format:

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <EMP_INFO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <EMP>
      <CR_NO>12345678</CR_NO>
      <EMPLOYER_NAME>ABC</EMPLOYER_NAME>
      <ID_NO>12345678</ID_NO>
      <EMPLOYEE_NAME>ABC</EMPLOYEE_NAME>
      </EMP>
      <EMP>
      <CR_NO>12345678</CR_NO>
      <EMPLOYER_NAME>XYZ</EMPLOYER_NAME>
      <ID_NO>12345678</ID_NO>
      <EMPLOYEE_NAME>ABC</EMPLOYEE_NAME>
      </EMP>
    </EMP_INFO>
    
    
    
    • Also, an XML file will contain information from XML file with the number of records in each file:
    <?xml version="1.0" encoding="utf-8"?>
    <Files>
      <File>
        <FileName>ABCD071120130001.xml</FileName>
        <CountOfRecords>499</CountOfRecords>
      </File>
    
    
      <File>
        <FileName>ABCD071120130002.xml</FileName>
        <CountOfRecords>9</CountOfRecords>
      </File>
    
    
    </Files>
    
    
    

    My PL SQL procedure follows, but throws an error:

    CREATE OR REPLACE PROCEDURE P_DATAXML AS
    BEGIN
    
      DECLARE
        XML_PROLOG    CLOB := '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>';
        xml_header    clob;
        xml_trailer   clob;
        tmp_xml       clob;
        tmp_file      clob;
      
        CURSOR C_REC IS  
        SELECT XMLELEMENT("EMP_INFO",
                                XMLELEMENT("CR_NO", "1234" ),
                                XMLELEMENT("EMPLOYER_NAME", "ABC" ),
                                XMLELEMENT("ID_NO", "9876541" ),
                                XMLELEMENT("EMPLOYEE_NAME", "XYZ" )
                 ).GETCLOBVAL() AS DATA_XML
               
          FROM TABLES;
      
      BEGIN
    
        -- create the temporary clob :
        DBMS_LOB.CREATETEMPORARY(TMP_FILE, TRUE);
      
        -- fetch records
        for r in C_REC loop
          DBMS_LOB.append(TMP_FILE, xml_prolog);
          DBMS_LOB.append(TMP_FILE, r.DATA_XML);
        end loop;
    
    
        -- write file to directory :
        dbms_xslprocessor.clob2file(TMP_FILE, 'CDIR', 'test.xml', nls_charset_id('AL32UTF8'));
        dbms_lob.freetemporary(TMP_FILE);
    
      END;
    
    END P_DATAXML;
    
    
    

    After my initial coding, I get the error made his first appearance on "dbms_xslprocessor.clob2file":

    ORA-21560: 3 argument is null, invalid or out of range

    ORA-06512: at "SYS." DBMS_LOB", line 991

    ORA-06512: at "XDB". DBMS_XSLPROCESSOR', line 324

    What could be wrong?

    You were on the right track. Continue to use SQL/XML, in special XML files XMLAGG logical global functions.

    The following should answer your initial needs.

    For this demonstration, I used resources. Table EMPLOYEES and a batch size of 100. It generates three files, 'file0001.xml' (100 records), "file0002.xml" (7 records) and a summary file:

    DECLARE

    file_desc_array xmlsequencetype: = xmlsequencetype();

    CLOB file_desc_xml;

    prolog1 CLOB: = '';

    prolog2 CLOB: = '';

    BEGIN

    for r in)

    Select xmlserialize (document

    XmlElement ('method'

    , xmlattributes ("http://www.w3.org/2001/XMLSchema-instance" under the name "xmlns: xsi" "")

    xmlagg)

    XmlElement ("EMP"

    xmlelement ("ID_NO", e.employee_id)

    , xmlelement ("EMPLOYEE_NAME", select)

    )

    )

    )

    ) as xmldoc

    --< generating="" summary="" record="">

    xmlelement ("file",

    xmlelement ("filename",

    , "file" | TO_CHAR (trunc ((rownum-1)/100) + 1, "fm0999"). ".xml".

    )

    xmlelement ("CountOfRecords", Count

    ) as file_desc

    -->

    , "file" | TO_CHAR (trunc ((rownum-1)/100) + 1, "fm0999"). '.xml' as file name

    of e hr.employees

    Group of trunc ((rownum-1)/100)

    )

    loop

    dbms_xslprocessor.clob2file (prolog1 | r.xmldoc, 'TEST_DIR', r.filename, nls_charset_id ('AL32UTF8'));

    file_desc_array.extend;

    file_desc_array (file_desc_array. (Last): = r.file_desc;

    end loop;

    Select xmlserialize (document

    XmlElement ("Files", xmlagg (column_value))

    )

    in file_desc_xml

    table (file_desc_array);

    dbms_xslprocessor.clob2file (prolog2 | file_desc_xml, 'TEST_DIR', 'summary.xml', nls_charset_id ('AL32UTF8'));

    END;

    /

  • Write in an external xml file

    OK, so ive been reading on xml and found theres this big thing appeal. appendChild(). that let your add a node to an xml file.

    Here's the catch, I can write in an external xml file, without the need to load it, DIRECTLY through flex?

    or I have to use some php i.e. backend


    Thanks heaps!

    ojk007

    The Flash Player, when it is hosted by a browser, severely limits access to the resources of the host computer. In other words, you cannot read and write files. If the XML file resides on the server, then you can use the code server-side (e.g. PHP) and edit the file, or you can load the XML file into your Flex application on the client computer, change it, then refer to something that can write the file.

  • Loading multiple Xml files.

    Ive got a menu based on xml and xml Photo Gallery based on the same chassis on my calendar.
    When I try to preview the film only the photogallery load xml file.

    I was wondering if anyone knows a method to load two xml files at a time or one after the other...

    Ive been after Jacques tutorials for menu xml and xml photo gallery... my code is very similar to them.
    Thanks in advance.
    Chris.

    Simply create separate XML objects.

    myXmlMenu = new XML();
    myXmlGallery = new XML();
    myXmlMenu.load (...)
    myXmlGallery.load (...)
    etc.

  • Problem with loading multiple external xml files

    I have a table named 'source', which consists of names of files external xml, the content of which I'm loading in another table called 'content '. I tried with the following text:

    ----------------------------------------------------------------------------------------
    for (i = 0; i < source.length; i ++) {}
    XML_URL = "' http://localhost/temp/ ' + source ;"
    myXMLURL = new URLRequest (XML_URL);
    myLoader = new URLLoader (myXMLURL);
    myLoader.addEventListener (Event.COMPLETE, xmlLoaded);
    }

    function xmlLoaded(evt:Event):void {}
    Content.push (myLoader.Data);
    }
    ---------------------------------------------------------------------------------------

    The problem is that in this way, I get that content of the last xml file and other items ' content ' are 'undefined '. Anyone know the solution to this problem or maybe another way to do this?

    Thanks in advance

    I tested the following with two xml files in the same folder (I would try the same thing) and put their names in the table source. Create two dummy xml for the test files.
    Here is my exact code (I've changed, I have one because it's italicized here in the forums):

    var content: Array = new Array();
    var source: Array = new Array ("media1.xml", "media2.xml");
    for (var a source) {}
    var XML_URL = ' "+ source [a];
    var myXMLURL = new URLRequest (XML_URL);
    var myLoader = new URLLoader ();
    myLoader.addEventListener (Event.COMPLETE, xmlLoaded);
    myLoader.load (myXMLURL);
    }

    function xmlLoaded(evt:Event):void {}
    Content.push (evt. Target.Data);
    if(Content.Length ==source.) Length)
    TR();
    }

    function tr() {}
    trace (content);
    }

  • XML file - child nodes table

    Just starting to learn more about XML.

    I have a simple XML I created which is

    
    
    
    Ambient
    
    
    panel1
    
    
    panel2
    
    
    panel3
    
    
    

    Using the XML property - child results node table of nodes in a table of 9 elements:

    #text
    Probe
    #text
    Probe
    #text
    Probe
    #text
    Probe
    #text
    

    My question is what are all the #text that are there?  Should the child nodes be not just the probes?

    It seems to me you may be heading down a dark path.  Instead of using the "table of nodes child" and fighting through the unnecessary complications and text nodes, let me suggest you look at XPath and using "get all matched Nodes.vi ' or 'Get first match Node.vi' to get the items.  XPath allows parsing XML child's play.

    For example:

    Of course, I hope that you use XP does not mean you use LV8.6 or earlier since the XPath screws are new to LV9.

    If you use LV8.6 or earlier, I suggest looking in the .NET functions to implement XPath.  Once you get the hang of it, it still beats the attempt to parse XML the old-fashioned way.

    As for the editor, I generate very few XML files by hand, for the most part I bring other programs and analyse them in LV again, XPath adjusts the rough edges.

  • Two apparently identical xml files. A fine exception analysis expects a name

    Hey. For a beginner to xml, these look similar v:

    Analysis:

    
        
        
        
        
    
    

    Will not scan:

    
      
      
      
      
      
      
      
      
      
    
    

    Code is below. Thoughts why?

        private static NodeList GetNodeListFromInputStream(InputStream is) {
    
            NodeList list = null;
    
            try {
    
                DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory. newInstance();
                DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder(); 
    
                docBuilder.isValidating();
                Document doc = docBuilder.parse(is);  // FAILS HERE- why         // Get stream from xml file
    
                // 2 ways to do it- heirarchically from root node or getElByTag* as a list. We do list
                list = doc.getElementsByTagName("*"); 
    
            }
            catch ( Exception e )
            {
                    System.out.println( "\n\n*****************\n" + e.toString() );
            }
    
            return list;
    
        }
    

    If you don't find anything, why not try and write it yourself? You can easily write a parser of the state machine-based in order to transform the entrance in a simple way.

Maybe you are looking for

  • Get a warning from the blue screen on my Satellite L300

    Lately, I've been making a warning of the blue screen on my system, and then it restarts automatically. I copied the info.Any help would be appreciated! I don't know what it all means. :)) ProductWindows ProblemStop unexpectedly Date25/10/2009 09:09

  • Overheating my Atrix

    I don't really know how an Atrix must generate heat. But I want my own get hot, especially when I use it's hard. Heat is located right next to the MotoBlur logo. Any idea on the amount of heat is normal?

  • How to delete items from a cluster?

    Hello. I would like to know how to delete items from a cluster. I'm stuck with this problem. It has its own order of each element in a cluster. I tried to open a table, but it seems too complicated. In the attachment, I want to only get the data of '

  • An error occurred while Windows was working with the Control Panel file C:\WINDOWS\system32\ALSNDMGR. CPL.

    Title:C:\Windows\System32\ALSNDMGR. Original CPL. Running Windows XP PRO this message "an error occurred while Windows was working with the Control Panel file. C:\WINDOWS\system32\ALSNDMGR.cpl. Can I re-enstall or the download file?

  • Download Windows xp for macbook

    Hi, I installed windows xp version 2002 on a partition on my macbook 13 inch using boot camp.  At the start, I select windows but it happens that the disk error and I have to close the macbook?  My daughter really wants to use excel and powerpoint to