Problem on obtaining XML form data

While I get XML data if I use all symbols except when '&' it works fine. But for '&' it gives this error:

No source available for 'SyncCondvarWait_r() to 0xb0d5bc76.

When I use this under the tag, it works fine.


When I use this under the tag, it is getting above error.


If anyone has a solution for this problem so help me...

Have you tried using: & ?

for example:


Martin

Tags: BlackBerry Developers

Similar Questions

  • Submitting form data (FDF, XML, HTTP)

    Hello

    I have problems with all the options and restrictions to understand how best to present the form data so that he can talk to other applications like databases.

    I would like to a field on a form where, while filling out the form, a person can type in an ID number and a query to a database returns the name, address, telephone etc.. The user then continues to fill in other parts of the form that were not complete the request.

    I understand that this will require an event onblur with JS or maybe a button?

    I wish that the request to be sent to a listener application I can write in java and will be listening on localhost.

    Users of the form can use player or the browser Chrome.

    I can design the form in LC or Acrobat DC mode.

    I can't add folder level scripts.

    This kind of thing is possible - there seems to be a lot of conflicting information. I've read a lot about TOT, but I don't know if the FDF can be used to "Refresh" (or the word "flatten") while the form is open.

    See you soon

    -Al

    Which is more complicated it must be. It seems that there is a local program that acts as a web server, the form may be subject to. Don't communicate the "HTML" is fine, and probably the easiest to analyze, but the data for any number of fields can be returned in a TOT, so there's no need to load a new form. This was possible because the forms were introduced with Acrobat/Reader 3 and similar to what AJAX provides HTML Forms.

    I wonder how it is possible to install a web server and scripts to process the form posts but not at the level records JavaScript for Acrobat/Reader.

  • Problem transforming any XML data to a number of

    Ask for help, I am trying to transform XML data into a number that I can use in formulations to animate. It is a simplified example of what I'm trying to do. I have successfully comes from the xml file info in the text on the stage. My problem is that I need to have value data imported to be a number so that I can do with her future calculations, such as adding two numbers together to create a new variable total. I have accumulated my brain reading on XML data, has spent several days trying obvious solutions without result, and yes I'm new on even though I tried many encoding options.

    Thank you, Cindy j..

    -IMPORT of ONE XML FILE "textimport.xml".

    <? XML version = "1.0" encoding = "UTF-8"? >

    < mediansaleschart >

    < figureone > 20 < / figureone >

    < figuretwo > 10 < / figuretwo >

    < / mediansaleschart >

    -EDGE ANIMER CODING scene/creationComplete

    $.ajax({)

    type: 'GET ',.

    URL: "textimport.xml",

    data type: "xml."

    success: {function (xml)}

    textOne = $(xml).find('figureone').text ();

    textOneTxt.html (textOne);

    textTwo = $(xml).find('figuretwo').text ();

    textTwoTxt.html (textTwo);

    }

    });

    var textOneTxt = $(this.lookupSelector ("textOneTxt"));

    var textTwoTxt = $(this.lookupSelector ("textTwoTxt"));

    -EDGE ANIMER OF ELEMENTS ON THE STAGE, text elements

    textOneTxt

    textTwoTxt

    To get the value of the xml node, you must use parseInt.

    So for the total, I did something like this

    myTotal = parseInt (figureone) + parseInt (figuretwo);

    You should also make use of the last reference of research

    Instead of

    $(this.lookupSelector ("textOneTxt"));

    Use this notation

    sym.$("textOneTxt");

    Here's an example - http://www.heathrowe.com/edge/xmlnum/

    Download - http://www.heathrowe.com/edge/xmlnum/xmlnum.zip

    Code on compositionReady.

    var figureone, figuretwo, myTotal;
    var outputField = sym.$("xmlOutput");
    var messageString;

    $.ajax({)

    type: 'GET ',.
    URL: "sampleoutput.xml",
    data type: "xml."
    success: {function (xml)}
    figureone = $(xml).find('figureone').text ();
    figuretwo = $(xml).find('figuretwo').text ();
    myTotal = parseInt (figureone) + parseInt (figuretwo);
    messageString = "Figure a single value is:" + figureone + "
    "
    Figure two value is: "+ figuretwo +".
    "
    The total value is: "+ myTotal;

    outputField.html (messageString);
    }
    });

    ///////////////// End Code ////////////////////////

    HTH

    Darrell

  • Problem with update of Forms 6i to Forms 10 g migration - Data

    Hello world.

    I have the following problem: I have a form that generates withdrawal slips. To do this, there is a button. When clicked, there is a slider with a query "SELECT" and "for update" that looks for the picking of sheets lines entered by the user. For each line, update the column "numberOfPickingSlip" with the appropriate number of picking slip (generated before the update loop).

    The strange thing is that the form works with Forms 6i, but it does not at all with 10g form, although I recompiled just the form (no need for Webutil run this form)... Only the last line of the form collection is updated. The code of the procedure is the same for BOTH versions... Nothing has changed. So, it isn't a problem of query. Even more interesting, if I run the form directly from Oracle Forms Builder and then clicking on the "Generate" button, it works but just once... And the worst case: after running the form directly from the Forms Builder, loading of another form (accessible from a menu above), of closing that form and then clicking on the "Generate" button, it doesn't work at all and only the last line is updated...

    I checked the contents of cursor and it contains all the lines that need to be updated, but for some reason, only the last is updated...

    How is that possible? Is there something special I need to do?

    Thanks for any help :)

    I had a similar problem with the help of update in a for loop. I know, it shouldn't be a problem, but you can try to use the rowid to update (at least to see if the problem goes away):

    procedure gen_pickingSlip is
    
      p_year VarChar2(4);
      p_numPickS number;
      p_line number := 0;
    
      cursor recup_maj is
        select ROWID,* from prepa
         where numPickingSlip is null
         for update of numPickingSlip nowait;
      recPickSlip prepa%rowtype;
    
    begin
    
      -- Retrieving the new picking slip number
      retrieve_num_pickingSlip(p_numPickS);
      -- Year of the picking slip
      p_year = to_char(sysdate,'YYYY')
    
      open recup_maj;
      loop
        fetch recup_maj into recPickSlip;
        exit when recup_maj%notfound;
    
        -- Position in the picking slip
        p_line := p_line + 1;
    
        --*This is the part where it seems only one update is done*
        update prepa
        set year=p_year, numPickingSlip=p_numPickS, line=p_line
        where ROWID=recPickSlip.ROWID;
      end loop;
    
      close recup_maj;
    
      if p_line > 0 then
        commit_form;
      end if;
    
      synchronize;
    
    end;
    
  • Cf11 enctype = "multipart/form-data" uploadind a file

    Hello

    I use Cold Fusion 11.

    When I browse for the file to download, the location and the file in the text box is: S:\App\test.xml

    < action = "fileaction.cfm cfform" enctype = "multipart/form-data" method = "post" > "

    < P > enter the full path and name of the file to download: < /P >

    < type CFINPUT = 'file' name = 'FileUp"size ="90">

    < P > < input type = "Submit" value = "Upload" > < / p >

    < / CFform >

    But during execution of code above, the following location appears in the variable:

    D:\ColdFusion11\cfusion\runtime\work\Catalina\localhost\tmp\neotmp803964384012527716.tmp

    When I remove the enctype = "multipart/form-data" from the code, the file is found, but the error message in the administration of Cold Fusion is:

    Invalid content type: application/x-www-formulaires-urlencoded. The upload files action requires forms to use enctype = "" multipart/form-data"

    Is there something in the configuration files or the administration of Cold Fusion 11 to be changed?

    It wasn't a problem with Cold Fusion 9.

    Mike

    Have you tried changing the cffile tag use accept = "text/xml, application/xml, application/octet-stream"?  The IIS MIME type should not have an impact here, because it is to be managed server side of ColdFusion.

    -Carl V.

  • How can I get Firefox 9.0.1 to remember form data? (I use Windows XP. Yes, I already looked under tools/options/privacy and don't see anything useful.)

    How can I get Firefox 9.0.1 to remember form data? I use Windows XP. Yes, I already looked under tools/options/privacy and don't see anything useful. I don't see that 'monitoring' and 'bar' on the Privacy tab. The previous version I was using shape data stored without any problem. I can't get 9.0.1 to remind OF THE form data.

    'Re missing you the section history of this window. See the screenshot I posted below.

    Try Firefox SafeMode to see how it works there.

    A way of solving problems, which disables most of the modules.

    (If you use it, switch to the default theme).

    • You can open the mode without failure of Firefox 4.0 + by pressing the SHIFT key when you use the desktop Firefox or shortcut in the start menu.
    • Or use the Help menu option, click restart with the disabled... modules while Firefox is running.

    Do not choose anything at the moment, just use 'continue in safe mode.

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before using the shortcut of Firefox (without the Shift key) to open it again.

    If it's good in Firefox Safe mode, your problem is probably caused by an extension, and you need to understand that one.

    http://support.Mozilla.com/en-us/KB/troubleshooting+extensions+and+themes

    When find you what is causing that, please let us know. It might help others who have this problem.

  • Impossible to analyze the xml.aspx contained in the main.js.Iam get the following error"could not obtain XML document, and the connection has failed: status 500

    Impossible to analyze the xml.aspx contained in the main.js.Iam get the following error"could not obtain XML document, and the connection has failed: status 500

    My main.js resembles

    xmlDataSource var = {}
     
    URL: 'dcds. - symbianxml.aspx", etc. (sample).
     
    init: function() {}
    URL, successful reminder, the reminder of failure
    This.Connect (this.) (URL, this.responseHandler, this.failureHandler);
    },
     
    /**
    * Analyzes the XML document in an array of JS objects
    @param xmlDoc XML Document
    * @returns {table} array of objects of the device
    */
    parseResponse: {function (xmlDoc)}
        
    var chElements = xmlDoc.getElementsByTagName ("channel");
       
    channels of var = [];
      
    Console.log (chElements.Length);
      
    for (var i = 0; i)< chelements.length;="">
        
    var channel = {};
       
    for (var j = 0; j)< chelements[i].childnodes.length;="">
        
    var node = Sublst.ChildNodes(1).ChildNodes(0) chElements [i] [j];
                
    If (node.nodeType! = 1) {//not an element node}
    continue;
    }
           
    Channel [node. TagName] = node.textContent;
    }
       
    Channels.push (Channel);
    }
    Console.log (Channels.Length);
    return the strings;
    },
     
    /**
    Manages the response and displays the data from device web app
    @param xmlDoc
    */
    responseHandler: {function (xmlDoc)}
      
    var channel = this.parseResponse (xmlDoc);
    var markup = "";
       
    for (i = 0; i< channels.length;="">
       
    markup += this.generateHTMLMarkup (i, channels [i]);
    }
    document.getElementById("accordian").innerHTML = mark-up;
    },
     
    /**
    Generates HTML tags to insert in to the DOM Web App.
    * @index i, index of the device
    @param device, device object
    */
    /*
    generateHTMLMarkup: function (i, channel) {}
      
    var str ="";
    "Str += '.


    ' onclick =-"mwl.setGroupTarget ('#accordian ',' #items_" + i + "', 'ui-show ',' ui - hide');" + ".
    "mwl.setGroupTarget ('#accordian ',' item_title_ #" + i + "', 'ui-open', 'ui-farm'); Returns false; \ » > » ;
    "" Str += "" + channel ['name'] + ' ";
    "Str += '.
    ";
    "Str += '.
    ";
    "Str += '.
    "+" id: "+ channel ['id'] +" ' "
    ";
    "Str += '.
    "+" type: "+ channel ['type'] +" ' "
    ";
    "Str += '.
    "+" language: "+ channel ['language'] +" ' "
    ";
    "Str += '.
    «+ "bandwidth:" + "fast" channel + "»»
    ";
    "Str += '.
    "+" cellnapid: "+ channel ["cellnapid"] +". "
    ";
    "Str += '.
    «+ ' link: '+'start the video »»
    ";
    "Str += '.
    ";
    return str;
    },*/
    generateHTMLMarkup: function (i, channel) {}
       
    var str ="";
    "Str += '.
    ";
    str +=  "" +
    "" + channel ['name'] + ""+""
    ";
    "Str += '.
    «+ ' link: '+'start the video »»
    ";
         
    return str;

    },
     
    failureHandler: {function (reason)}
    document.getElementById("accordian").innerHTML = "could not get XML document.
    '+ reason;
    },
     
    /**
    Retrieves a resource XML in the given URL using XMLHttpRequest.
    @param url URL of the XML resource to retrieve
    @param called successCb, in the XML resourece is recovered successfully. Retrieved XML document is passed as an argument.
    @param failCb called, if something goes wrong. Reasons, in text format, is passed as an argument.
    */

    Connect: {function (url, successCb, failCb)
      
    var XMLHTTP = new XMLHttpRequest();
      
    XMLHTTP. Open ("GET", url, true);

    xmlhttp.setRequestHeader("Accept","text/xml,application/xml");
    xmlhttp.setRequestHeader ("Cache-Control", "non-cache");
    xmlhttp.setRequestHeader ("Pragma", "non-cache" "");
      
    var that = this;
    XMLHTTP.onreadystatechange = function() {}
       
    If (xmlhttp.readyState == 4) {}
        
    If (XMLHTTP. Status == 200) {}
         
    {if (!) XMLHTTP.responseXML)}
    try {}
    If server has not responded with good an XML MIME type.
    var domParser = new DOMParser();
    var xmlDoc = domParser.parseFromString(xmlhttp.responseText,"text/xml");
           
    successCb.call (that, xmlDoc);
           
    } catch (e) {}
    failCb.call (, "answer was not in an XML format.");
    }
              
    } else {}
    successCb.call (that, xmlhttp.responseXML);
    }
    } else {}
    failCb.call (this, "connection failed: status"+ xmlhttp.status ");
    }
    }
    };
    XMLHTTP. Send();
    }
    };

    Please see the content in main.js is fully analyzed.

    Forward for the solution to my request all members of the community...

  • How to submit form data to the REST 3rd party API service

    Hi guys,.

    It's new to me, so the sample scripts and procedures will be appreciated.

    Problem:

    My client has opted for a more advanced 3rd party CRM solution that uses REST APIs

    They want form data entered (form join us) and submitted to the 3rd party CRM

    Examples of available API CRM scripts are PHP and makes no sense to me.

    It is their example of form and php script.

    Issues related to the:

    (1) how to convert this works in British Colombia

    (2) is it possible to use liquid as a script to make the API calls server side?

    (3) also would like to hide the username token and API?

    Samples:

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    < html >

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    < style type = "text/css" >

    label, input, textarea {display: block; float: left; width: 150px; margin: 5px ;}}

    label {clear: left; text-align: right ;}}

    input [type = 'submit'] {width: 60px banner; margin: 10px 0 0 165px; clear: left ;}}

    < / style >

    < / head >

    < body >

    Contact us < h2 > < / h2 >

    <! - Edit REQUIRED with the file name of the script if different from the example - >

    < do action = "Solve360ContactSave.php" method = "GET" > "

    < label > (required) < / label >

    < input type = "text" name = "FirstName" value = "" / > "

    < label > name < / label >

    < input type = "text" name = "lastname" value = "" / > "

    < label > title < / label >

    < input type = "text" name = "jobtitle" value = "" / > "

    < label > Business email < / label >

    < input type = "text" name = "businessemail" value = "" / > "

    Note < label > < / label >

    < name textarea = "note" cols = "4" rows = "4" > < / textarea >

    < input type = "submit" value = "Save" / >

    < / make >

    < / body >

    < / html >

    PHP:

    <? PHP

    version 2.0

    All of the placeholders like {property}, {categoryId}, {templateId} expected

    be replaced by actual values without the {} brackets

    REQUIRED with your email address edit

    define ('USER', ' [email protected]');

    Edit REQUIRED by token, workspace > my account > QAnywhere > API Token

    define ('TOKEN', 'life');

    Get request data

    $requestData = array();

    parse_str ($_SERVER ['QUERY_STRING'], $requestData);

    Configure the service gateway object

    need to 'Solve360Service.php ';

    $solve360Service = new Solve360Service (USER, TOKEN);

    //

    Add the contact

    //

    $contactData = array)

    'Name' = > $requestData ["firstname"].

    'name' = > $requestData ["lastname"].

    "jobtitle" = > $requestData ["jobtitle"],

    'businessemail' = > $requestData ["businessemail"],

    Category of OPTIONS apply tag (s) and set the owner for the contact from a group

    You will find a list of identifiers for your labels, the groups and users in the workspace > my account > QAnywhere

    To activate this option, delete the following text:

    /*

    Specify a different property for example share item

    'property' = > {property},.

    Add categories

    'Catégories' = > array)

    'Add' = > array ('category' = > array ({categoryId}, {categoryId}))

    ),

    */

    );

    $contact = $solve360Service-> addContact ($contactData);

    If (isset ($contact-> error)) {}

    Post yourself if errors occur

    mail)

    USER,

    "Error when adding contact to resolve",

    ' Error: '. $contact-> errors-> asXml()

    );

    Die ('system error');

    } else {}

    Get the new contact params of the answer

    $contactName = (string) $contact-> article-> name;

    $contactId = (integer) $contact->-> id;

    You post the result

    mail)

    USER,

    "New contact added to solve."

    'New contact' '. $contactName. "" with the id '. " $contactId. "has been added to Solve360.

    );

    }

    //

    OPTION add an activity

    //

    /*

    * You can set an activity on the contact you created

    * This example shows how to create a Note, to enable this feature just uncomment the following application

    */

    /*

    Preparation of data for the note

    $noteData = array)

    'details' = > nl2br ($requestData ['notes'])

    );

    $note = $solve360Service-> addActivity ($contactId, 'note', $noteData);

    You post the result

    mail)

    USER,

    "Note was added to" "." " $contactName. "" contact to solve ","

    'Explanation '. $note-> ID "has been added to the contact with the id". $contactId

    );

    End of the addition of note activity

    */

    //

    OPTION of inserting a business model

    //

    /*

    * You can also insert a template directly into the contact that you just created

    * You will find a list of identifiers for your models in the workspace > my account > QAnywhere

    * To enable this feature, just uncomment the following application

    */

    /*

    Beginning of the application model

    $templateId = {templateId};

    $template = $solve360Service-> addActivity ($contactId, 'model', array ('templateid' = > $templateId));

    You post the result

    mail)

    USER,

    "Model has been added to" "." "" $contactName. "" contact to solve ","

    'Model with id '. $templateId. "has been added to the contact with the id". $contactId

    );

    End of the model application

    */

    ? >

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    < html >

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    < / head >

    < body >

    Result of < h2 > < / h2 >

    Thank you < p >, < b > <? PHP echo $contactName? > < / b > < / p >

    < p > your data has been successfully saved. < /p >

    < / body >

    < / html >

    You cannot use the server host-side or liquid code on BC for this.

    You need to be to have some sort of configuration to point to a 3rd party solution that sends data on them or you need to implement and solution from API to API.
    A form will create a deal (or order if take payment) and you can have the BC API sends a url to the notification when cases are triggered. With your own code solution read you cases, get those to the shape you want and send the information to the 3rd part of the data structure they need.

  • Adobe LiveCycle dynamic XML forms &amp; Apple iPad

    Adobe LiveCycle dynamic XML form are visible/usable by Apple iPad and phone from Apple or other mobile devices?

    According to Adobe, you can with LiveCycle ES4. At least that is my interpretation of their blog post on the support of ES4 Mobile Forms.

    Of course, there were several discussions on this subject in the Adobe forums.

    Re: Cannot display the form in the Mobile which was created using LiveCycle

    Re: I've created a form using Adobe Livecycle, but I can't open the screen on Ipad or Samsung tablet pc.

    Re: Problem using the form on the iOS or Android devices

    Re: help... Making existing fillable livecycle to mobile (ios/android adobe reader.) compatible

    Hope these helps.

  • Form data not shown unless the cursor in the field

    .PDF with the form filled in will not display or print form data when open with Windows and Reader 8.1.

    Display and print are OK on Mac OS X with Reader or preview.

    other files created and downloaded from the web site even did not have this problem.

    File transferred as a piece attached and copied by react "sneaker net" the same on several PC.

    move the cursor to any field filled shows data only when the cursor is in the field.

    Opening a PDF form in preview it corrupts and causes the behaivour you describe. You can correct the form using this tool:

    http://blog.practicalpdf.com/2013/08/introducing-the-practicalpdf-fix-form-utility/

    In the future, avoid using Preview if it is possible.

  • How to NOT send some form data when the form is submitted

    Hello

    I created a PDF form with radio buttons in the Group and the boxes. When I the form of data, such as values using the submit by e-mail button to send form data as XML or merge data into a spreadsheet files, I'll see the data values for radio buttons and checkboxes.

    What I want here is to don't get the data values for some controls such as the boxes option, but no other controls like check boxes, in the XML or Excel worksheet after submission of the form. I know how to hide the controls in the form, but I have to the visible and active boxes on the form.

    Is there a way to hide or do not send form data when the form data is submitted?

    Thank you

    Sam

    Hi Kyle,.

    That's exactly what I want! Once I have not selected any data binding, the field is in shape and active, but when submitted as XML or it merge with a spreadsheet, the field is gone.

    Forgive me if I didn't my self clear in my question. Answer you is straight to the point.

    Thank you very much!

    Sam

  • Return of form data format

    Thank you for taking the time to read my question. I use Adobe Acrobat Pro X. I have created a form and it works well. My question comes from a wait when I thought that I would be able to have the data returned in a string, or a comma string separated and not in a .pdf. file

    Is it possible to do?

    Example:

    I send the pdf form to a user, the user fill it out, and when they send it to me, I just get the form data in an e-mail message, not the entire form.

    Thank you

    Brad

    Excel does not support FDF or XFDF.  Rather than choosing the option on your action button to "Submit a form", change to "Run a JavaScript" and press the Add button.  After changing the mailto address, paste the following script:

    this.submitForm({)
    cURL: "mailto:[email protected]',"
    cSubmitAs: 'XML '.
    })

    Any fields left blank will be included in the returned data.  If you want them to be included, or if you want that the differently structured XML, then an optional parameter can be added to the function call above (oXML).  However, it can be complex depending on your needs for implementation of the XML data object to assign to oXML.

  • About the export form data

    Is it possible to export the list items, in a drop-down list when you export data in xml format?

    When I Menu forms, manage form data, data on exports, it exports only the first element or the selected item in a drop-down list, and not all items in the list...

    Am I missing something?

    Nope... .the data are only meant to contain a single value (the one that the user selected).

    Paul

  • Removing form data

    Hello!

    I filled out a form on a web page and submitted it. On the next page, I received an e-mail confirmation that the information has been received. Then I removed all the browser history (historical search, form data, cookies and so on).

    Is there a risk that this suppression of the browser history is recalled or cancelled the data has already been submitted?

    Some websites may use the storage side edition document browser, followed by the scores of the game data authenticate you and other transient data. However, in your scenario, when you submit a form and get a confirmation of the server which is your data, the server is no longer on what account it is stored in your browser.

  • Firefox 4 does not save form data after sending form and pressing the previous button

    Firefox 4 does not save form data after sending form and pressing the back button... It's very annoying that it erases all data. It worked fine on FF3.

    See:

    • Firefox or tools > Options > privacy > History: "don't forget to search and form history."

Maybe you are looking for

  • Pop - up windows for Web sites have no menu bar, how do I show?

    I subscribed to a membership site and when I click on their Forums it opens in a window pop up. The problem is, when the pop-up appears, I don't have a file Menu, Bookmarks Toolbar, etc. All I have is an address bar. How do the Menus show as usual in

  • Ports USB Hi-Speed on Satellite P200-140

    I use a P200-140 and it was announced as having USB 2.0 ports, but whenever I have something to connect to USB ports, the message appears: this device can perform faster if plug you it into a USB Port of speed Hi. This laptop is supposed to have 4 hi

  • Service Pack 1 pretends that it is installed :(

    Hey everybodyI tried to install SP1 for vista, it was not showing on my windows update while I was trying to install it manually. After a very long download SP1 tried to run but then told me that it was already installed, and it is actually not: S I

  • Error in Windows Embedded studio this rchtx32.ocx cannot be saved.

    original title: Windows Embedded studioI try to install Windows embedded studio 2009 on Windows 2008 R2 (32 and 64 bit), and I get an error that rchtx32.ocx cannot be saved. I have cheked the directory that the file is in, run as administrator, inclu

  • Long defrag!

    I need help. In addition to one, no doubt, but for now, my biggest crisis is that my HP Defragmenter has already taken nearly 24 hours and is still running. I'm afraid to stop it, but I'm getting impatient and is about to cancel. A defrag can get stu