Classic report region is not refreshing using the DA

Apex 4.2.2 on Oracle 11.2 use EPG in Linux

I have a Camembert and I want user to click on a section and refresh a report classic region under the graph on the same page.  I've used various methods to try to get this working, but none succeeded.  Here's what I have right now - when a pie is clicked, a value is returned to a text P19_STATUS field in the region of report using javascript in a DA:

AnyChart.getChartById ($("#chart2_chart_object").attr ("id"))

.addEventListener ("pointClick", Function {}

$s ("P19_STATUS", e.data.Name);

});

It works fine as I can see the value that corresponds to the label in the chart.  I created a second DA with an event of amendment to article P19_STATUS. There is a REAL action - Refresh.  Selection type:, Region: classic report (40).  I put also enable partial Page Refresh Yes on the classic report and the elements on the Page to be sent to: P19_STATUS.  When the user clicks on the cake the value is in P19_STATUS, but the report is not updated.  FYI, I also tried $('#report_region_id') .trigger ("apexrefresh");  in the second DA but which doesn't work anymore.  I want only the region refresh, not the page.  Please help - I'm fairly new to Apex, so please be as detailed as possible.  Thank you!

Nicolette wrote:

User12037683

The missing part was that the report is a subregion of the chart area.

Under regions have their own model of the region. Instead the use of models from the parent area area unit.

Models of the region can be specified for the sub regions as all other regions. In this case it seems to be a problem with the sub-region model as it appears in the list of model as 48560037058667637086selection.

Tags: Database

Similar Questions

  • ORA-20987: APEX - interactive report region does not exist in the application

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query (nPage_id number)

    return varchar2

    as

    l_report apex_ir.t_report;

    l_query varchar2 (32767).

    l_list varchar2 (32767).

    number of nRegion_id;

    number of nIR_id;

    OWA.vc_arr nm;

    VL owa.vc_arr;

    BEGIN

    SELECT region_id

    IN nRegion_id

    Of apex_application_page_regions

    WHERE application_name = "E-BRIL.

    AND page_id = nPage_id

    AND source_type = "interactive report";

    nIR_id: =.

    apex_ir.get_last_viewed_report_id (p_page_id = > nPage_id,)

    p_region_id = > nRegion_id);

    NM (1): = "DUMMY_JUST_TO_SET_UP_OWA_UTIL";

    VL (1): = 'WHATEVER ';

    OWA.init_cgi_env (nm.count, nm, vl);

    l_report: = APEX_IR. () GET_REPORT

    p_page_id = > nPage_id,

    p_region_id = > nRegion_id,

    p_report_id = > 0);

    l_query: = l_report.sql_query;

    because me in 1.l_report.binds.count

    loop

    l_list: = l_list | i||'. '|| l_report. Binds (i) .name | » ='|| l_report. Binds (i) .value;

    end loop;

    Return l_query;

    end;

    /

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    Thanks in advance.

    Reg,

    Chris

    1717220 wrote:

    Please update your forum profile with a recognizable username instead of "1717220": Video tutorial how to change username available

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query(nPage_id IN number)
    return varchar2
    as
    l_report  apex_ir.t_report;
    l_query  varchar2(32767);
    l_list  varchar2(32767);
    nRegion_id number;
    nIR_id number;
    nm  owa.vc_arr;
    vl  owa.vc_arr;
    BEGIN 
    
        SELECT region_id
        INTO nRegion_id
        FROM apex_application_page_regions
        WHERE application_name = 'E-BRIL'
          AND page_id = nPage_id
          AND source_type = 'Interactive Report';
    
        nIR_id :=
          apex_ir.get_last_viewed_report_id (p_page_id        => nPage_id,
                                            p_region_id      => nRegion_id);
    
        nm(1) := 'DUMMY_JUST_TO_SET_UP_OWA_UTIL';
        vl(1) := 'WHATEVER';
        owa.init_cgi_env( nm.count, nm, vl );
    
        l_report := APEX_IR.GET_REPORT (
                        p_page_id  => nPage_id,
                        p_region_id => nRegion_id,
                        p_report_id => 0); 
    
        l_query := l_report.sql_query;
        for i in 1..l_report.binds.count
        loop
            l_list := l_list||i||'. '||l_report.binds(i).name||'='||l_report.binds(i).value;
        end loop;
    
    return l_query;
    end;
    

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    The '0' in line 31 should be "nIR_id".

    What is the purpose of the lines 24-26?

  • Refresh the report area of PL/SQL (not Page) using the value of the select list

    Hello

    I have a report region based on a "body of the PL/SQL function returning a query'which SQL is generated on the selection of a value of an element from the selection list, select action list is"Redirect and set", but this causes the entire page refresh rather than just the region report." I tried to update the report using only a dynamic action on the item list select (Action now reset to 'None'), but now the report does not appear on the choice of the list. Can someone suggest a solution that will allow me to update this report without refreshing the page? I use APEX 4.2.2 and the syntax of the statement is as follows:

    DECLARE

    v_statement VARCHAR2 (500);

    BEGIN

    SELECT query_text
    IN v_statement
    OF sql_queries
    WHERE query_id =: P2_QUERY;

    RETURN v_statement;

    END;

    where P2_QUERY is Select list item,

    Kind regards

    Kevin.

    KevinFitz wrote:

    The displayed report region is subordinate to the point P2_QUERY is NOT NULL. I guess that the region appears not is because the Action for the select list item is set to None, and so P2_QUERY is always NULL.

    No, the region does not appear because it is subordinated to the P2_QUERY being NOT NULL. This means that the region of report never exists on the page displayed in the browser, so it cannot be updated dynamically. (Dynamic updating is not to evaluate the conditions of the region, and she makes only the content of the report, not the whole region again).

    Remove the condition on the region to report, check the update works and then go back on what exactly are the requirements here. If you want to the area appear only when P2_QUERY has a value, and you want it to be regenerated without submitting and reposting of the page, the region must then be hidden rather than conditionally restored and shown via dynamic when action P2_QUERY Gets a value.

    I tried to add a further Action for the event real value DA but has been a mistake, as stated above,

    All irrelevant if Page to submit items on the region is used correctly.

  • How can I get the classic report value when I click on the record?

    Hi all

    I have a simple classic report and I want to get the empno when I click on record. For example, when I click on record 1, and I'll go '7369', if I click on the 3 card, and I'll go '7521'. How can I do this? Please help, thanks!

    Hi jane.kuang,

    Jane.Kuang wrote:

    Thank you very much!!! Your message is useful for me. But this javascript has something wrong. When I click on the first time, the empno appears only once, but when I click on the other record, empno appear twice, and I click on the third time, it appears three times... I'm new to JS, I don't know how to fix it. Thank you!

    Use instead the dynamic action to that effect.

    Here are the steps:

    • Change your region classic report-> section 'Attributes'-> 'ID' static-> give an id say myempregion static
    • Create a dynamic action with the following attributes:

    Event: click on

    Selection type: jQuery Selector

    jQuery Selector:

    #myempregion table.uReportStandard tbody tr
    

    Action: Run the JavaScript Code

    Code:

    var empno = $(this.triggeringElement).find('td[headers="EMPNO"]').text();
    alert(empno);
    $('#P21_X').val(empno);
    

    Items concerned: keep it unselected

    • Change once created, your dynamic action-> go to section 'Advanced'-> set 'Extended event', 'dynamic'.

    This will fix the following in the code of the Para:

    • The jQuery Selector used by Para to trigger the click event is bad. This will fix the multiple alerts.
    • Para code won't work on loading the page, but if there are many rows in the table and pagination for the report is in place, and then when you paginate your report, it will not work. But it will work with dynamic action 'Scope of the event' the 'Dynamic' value even when you paginate the report.
    • Finally, most of the dynamic interactions page must be converted to dynamic actions, this will help the maintainability of the code, instead of stacking the javascript in your page.

    Kind regards

    Kiran

  • How not to use the squint no functionality?

    I forgot how not to use the squint no functionality. Can anyone help?

    18.0 Firefox was released last Tuesday, you need to update.

    See if this FAQ for NoSquint answers your questions.

    https://urandom.ca/NoSquint/#FAQ

  • The listener is down: even if a listener with the name "AUDITOR", is running on this host at the port: "1521", it has not started using "the target LISTENER. ORA file.


    I moved a listener on a host in a House different oracle. The headset works fine, but EM 12 c shows that the listener is down with the following summary:

    The listener is down: even if a listener with the name "AUDITOR", is running on this host at the port: "1521", it has not started using "the target LISTENER. ORA file. CORRECTIVE ACTION: To monitor this "EM listener target" with its current configuration, you must stop the process of listening running and start it using the Listener parameter file: opt/oracle/product/12.1.0.2/network/admin/listener.ora. Alternatively, you can update "this target LISTENER. Location ORA setting"with the location of the listener running, which started using the: opt/oracle/product/11.2.0.3/network/admin/listener.ora.

    EM 11 g, I simply changed the configuration of the listener for the different oracle home, argued the change and in a few minutes the listener would show that 'UP' with the oracle of new home. I upgraded to MS 12 c (12.1.0.4) and can't find how to do this. Can someone give me the procedure.

    Thank you

    Ron

    Hi Ron,

    Can you please do the following?

    -Create a for the listener listener.ora file, stop and start the receiver using the listener.ora file. If the file is located in a default location, set the TNS_ADMIN environment variable to that location before you start the listener.

    -Log on to the EM console, go to the homepage of the listener.

    -In the Oracle Listener menu, select target Configuration > Configuration of the analysis.

    -Ensure that the parameters, including the Listener.ora directory, are properly.

    Kind regards

    -Loc

  • Hello I can not connect using the camera Nikon D5 me please

    Hello I can not connect using the camera Nikon D5 me please :)))
    I've heard say that some work and I can not connect! Can someone help me to write on this topic?

    LR supports D5 attach now!

  • Get - VM: with "xyz" name VM is not found using the specified filters.

    Hello everyone!

    I have a script that reads a CSV with multiple host names, to connect to vCenter and should get the name of host, ip and PortGroup information to generate an external file of CSV.
    It happens that several cases vm does not exist in vCenter and returns me the below error:

    Get - vm: 04/07/2016-14:41:58Get - VMVM with the name "pxl1sso00008" was not found using the specified filters.

    No caractere:31 of C:\Users\f3135606\Desktop\vmTeste1.ps1:25

    + foreach ($vmName in $vmList) {get - vm $vmName |} Select Name, @{N = "Network"; e = {$_...}}

    +~~~~~~~~~~~~~~
    + CategoryInfo: ObjectNotFound: (:)) [Get - VM], VimException)
    + FullyQualifiedErrorId: Core_OutputHelper_WriteNotFoundError, VMware.VimAutomation.ViCore.Cmdlets.Commands.GetVM



    How would I do to get the information from an input file, see the vCenter and if this positive results write the file, ignoring errors. Ideally, if not to find the machine, simply create a line in the output file with only the hostname with the rest in white.

    Follow the .ps1 file:



    $vmlist = Get-Content C:\vmnames.csv
    
    if (!(Get-PSSnapin -Name VMware.VimAutomation.Core -ErrorAction SilentlyContinue))
    {
    Add-PSSnapin VMware*
    Set-PowerCLIConfiguration -DisplayDeprecationWarnings $false -DefaultVIServerMode multiple -InvalidCertificateAction Ignore -Scope Session -ProxyPolicy NoProxy -Confirm:$false | Out-Null  
    [void](Get-PSSnapin VMWare.VimAutomation.Core -ErrorVariable getVmwareSnapinErr 2> $null)
    if ($getVmwareSnapinErr.Count -gt 0) {    Add-PSSnapin VMware.VimAutomation.Core }
    }
        
    $VCconn = Connect-VIServer $vCenter -User $vUsuario -Password $vPass > $null
         
    foreach ($vmName in $vmList) {get-vm $vmName| Select Name, @{N="Network"; e={ $_ | get-networkadapter|Select-Object @{N="Network";E={$_.NetworkName}}} }, @{N="IP Address";E={@($_.guest.IPAddress[0])}}|Export-Csv –path c:\scripts\vlans.csv –NoTypeInformation}
    

    Laurent,

    See below... should get what you want... If the virtual machine is not found that it only allows to correct the virtual computer name in the output.

    $vmlist = Get-Content C:\vmnames.csv  
    
    if (!(Get-PSSnapin -Name VMware.VimAutomation.Core -ErrorAction SilentlyContinue))  {
        Add-PSSnapin VMware*
        Set-PowerCLIConfiguration -DisplayDeprecationWarnings $false -DefaultVIServerMode multiple -InvalidCertificateAction Ignore -Scope Session -ProxyPolicy NoProxy -Confirm:$false | Out-Null
        [void](Get-PSSnapin VMWare.VimAutomation.Core -ErrorVariable getVmwareSnapinErr 2> $null)
        if ($getVmwareSnapinErr.Count -gt 0) {
            Add-PSSnapin VMware.VimAutomation.Core
        }
    }
    
    $VCconn = Connect-VIServer $vCenter -User $vUsuario -Password $vPass > $null
    $arrVMInfo = @()
    
    foreach ($vmName in $vmList) {
        $vm = get-vm $vmName -ErrorAction SilentlyContinue -ErrorVariable VMError | Select Name, @{N="Network";E={ $_ | get-networkadapter | Select-Object @{N="Network";E={$_.NetworkName}}} }, @{N="IPAddress";E={@($_.guest.IPAddress[0])}}
        if ($vm -eq $null) {
            $arrVMInfo += New-Object PSObject -Property @{ `
                Name=$vmName `
            }
        }
        else {
            $arrVMInfo += New-Object PSObject -Property @{ `
                "Name"=$vm.name; `
                "Network"=$vm.Network.Network; `
                "IP Address"=$vm.IPAddress `
            }
        }
    }
    $arrVMInfo | Select Name, Network, "IP Address" | Export-Csv "c:\scripts\vlans.csv" -NoTypeInformation
    
  • It may be, or not to use the products online?

    It may be, or not to use the products online? Do not install on my PC?

    cc Adobe programs are installed on your computer.  You must "online registration" once every 30 to 91 days to continue using them.

    If you encounter a problem, please explain.

  • Ideas re: ' Connect-VIServer: could not connect using the requested protocol "failure

    I know, it's a matter of weakness, but I hit the wall on this one. I've even got desperate enough that bouncing private LuD, and I tried everything we discussed, but I'm still @ deadlocked.

    I developed and tested several scripts that I am finally ready to go with Prod.

    I get this error when I am trying to connect to Vcenter server or host of the cmndline of vitoolkit (and obviously in scripts).

    «Connect-VIServer: could not connect using the requested protocol.»

    I'm runing the vitoolkit FROM the server VCenter, so I wouldn't exepct the local to be a problem connection. I expect calls the ESX servers as questions) (we have several firewalls in the game). But even once, on-site I would not expect a problem.

    I checked my ports of VC and even more precisely called listener in the connect command, but it does not help.

    I tried to watch the ports through various lines of command, but I don't see anything.

    Any suggestions?

    Add - confirm: $false and it won't be quick.

    =====

    Carter Shanklin

    Read the PowerCLI Blog
    [Follow me on Twitter |] http://twitter.com/cshanklin]

  • Refreshing a report region does not work

    Hello

    I have a report interactive area (emp) and a P1_ename_filter (list of type selection) filter field with dynamic action on the change that has to refresh the emp region.

    But it does not work: I see the discount on the intermittent, but then there's the same record without applying the filter

    I have the example on apex.oracle.com:

    https://Apex.Oracle.com/pls/Apex/f?p=4550:1:103040501310506:

    https://Apex.Oracle.com/pls/Apex/f?p=102726:LOGIN_DESKTOP:104044067688962:

    user and developer demo/demo (TR1 workspace)

    Concerning

    Gianpaolo

    gianpagi wrote:

    I have a report interactive area (emp) and a P1_ename_filter (list of type selection) filter field with dynamic action on the change that has to refresh the emp region.

    But it does not work: I see the discount on the intermittent, but then there's the same record without applying the filter

    The P1_ENAME_FILTER element did not appear in the attribute of Page elements to be submitted for the IR region. This is required to set the filter value in session state before running the report query when the report is refreshed.

  • OJ4680 will not scan using the Solution Center. HP scan Diagnostic Utility reports error Twain

    Running XP Pro, photosmart Intalled worm 14 software.  Major problems. found a file system Windows corrupted & corrected, but I can't yet scan Solution Center.  Run the scan diagnostic utility HP reports a Twain error.

    The Twain component is not working properly because the product is used by another process.  Without this component, you cannot scan with the HP Solution Center software and some other applications.

    Is the Twain driver this isuse by another process and how to determine what I should do to fix this problem?

    I uninstalled, rubbed & reinstalled the software several times without any change in the results.  What can I do next?

    Thank you

    DWB

    Good question.  I never got a response.  I would only be able to help.  After having browsed the forum looking for answers, I found one with a reasonable solution.  Piece of HP printer and buy an Epson.

  • Component interface user built programmatically is not refreshed in the region

    Jdev 11.1.2.2.0

    I have a page jspx with area (fragment of a page in the workflow) incorporated.

    Region setting:

    R: ifNeeded

    Activation: deferred

    Jspx homepage code snipplet:

    ...

    < af:chooseDate id = "theChooser" / >

    < af:inputDate chooseId = 'theChooser' id = 'choosenDate '.

    autoSubmit = "true" visible = "false".

    value = "#{session_calendars.activeDay} '"

    valueChangeListener="#{viewScope.backing_capacityCalendar.goDate}"/ >

    < af:panelStretchLayout id = "psl3" partialTriggers = "choosenDate theChooser" >

    < f: facet = 'bottom' name / >

    < f: facet name = "center" >

    < af:region value = "#{bindings.cmCaltaskflow1.regionModel}" id = "r1" / > "

    < / f: facet >

    < f: facet = 'Start' name / >

    < f: facet = 'end' name / >

    < f: facet = 'top' name / >

    < / af:panelStretchLayout >

    ...

    Code snipplet of the page fragment (jsff) / region:

    ...

    < af:panelGroupLayout layout = "scroll" binding = "#{pageFlowScope.backing_cmCalBean.cmCalPanelGroupLayout} '"

    ID = "pgl37" partialTriggers = "cil3 cil4 cil2 cil1" >

    < af:spacer width = "10" height = "10" id = "s23" / >

    < / af:panelGroupLayout >

    < af:outputText value = "#{pageFlowScope.backing_cmCalBean.activeDay}" id = "ot4" / > "

    "< af:commandToolbarButton icon="/images/nextitem_ena.png ".

    shortDesc = "next day".

    ID = "cil2".

    actionListener = "#{pageFlowScope.backing_cmCalBean.changeDate}" >

    < af:setActionListener from = '1 '.

    to = "#{requestScope.Number}" / >

    < af:setActionListener from = 'DAY '.

    to = "#{requestScope.type}" / >

    < / af:commandToolbarButton >

    When you select date in chooseDate in the homepage, he got passed as an input to the flow of the area/task parameter, and the region is updated.  I can see in < af:outputText value = "#{pageFlowScope.backing_cmCalBean.activeDay}" id = "ot4" / > in the region that it accepts the parameter correctly from the home page and in the region got refreshed. "

    However, there is a panelGroupLayout in the region which is built programmatically in the bean based on the input parameter

    < af:panelGroupLayout layout = "scroll" binding = "#{pageFlowScope.backing_cmCalBean.cmCalPanelGroupLayout} '"

    ID = "pgl37" partialTriggers = "cil3 cil4 cil2 cil1" >

    I can see in the paper that the methods in the bean got called correctly and that is the construction of the panelGroupLayout with the right data.  But she has not updated and reflects the new data in panelGroupLayout.

    I have even in my bean code: delete children panelGroupLayout before strengthening again on the update.

    If (cmCalPanelGroupLayout! = null) {}
    LOGGER.info ("claire cmCalPanelGroupLayout");
    cmCalPanelGroupLayout.getChildren () .clear ();
    }

    Any ideas how component user interface built by program in the region can get updated then the outbreak of the homepage?

    Please notify.

    Thank you

    -Mina

    I found the solution.

    You will need to disable the children in the region, a single layer, instead of just compensation to the children of cmCalPanelGroupLayout:

    Region of RichRegion (RichRegion) = JSFUtils.findComponentInRoot ("r1");

    region.getChildren () .clear ();

    AdfFacesContext.getCurrentInstance () .addPartialTarget (region);

    -Mina

  • Trusteer report icn does not appear on the yahoogb - 1.8

    Trusteer report icon does not appear when I go to my bank account. It should normally be greyed out, but when I access the bank account it turns green. He seems not at all. I use version yahoogb - 1.8

    A user Trusteer report received this e-mail message Wednesday, August 17, 2011 a updated for Firefox 6.0.

    Please contact the Support technique Trusteer.

    We are pleased to inform you that a version of the report that supports Firefox 6 has been released and is now available for download in the following link: http://download.trusteer.com/NkuiAcruiKc/RapportSetup.exe

    Please be sure to restart your computer after the installation is complete.

    Please note: this version of the report is currently a beta version. We would appreciate any comments you may have about this version.

    If the report indicates that the version of the report that you are trying to install is older than the version already installed, please follow these instructions: 1. choose uninstall report 2. When prompted, select 'delete all user settings '. Please, assisted by the following image: http://consumers.trusteer.com/files/images/uninstall.jpg 3. Reinstall report from the link above.

  • Classic report, query does not work

    Hello

    I have a query that allows to choose from a table manufacturing exists in the other. It works in another query editor. But not in the Apex or in classic report page.

    SELECT q.user_name, COUNT (*) say
    OF kom_qabz.kom_qabz q
    WHERE q.amount IS NOT NULL
    AND THERE ARE
    (SELECT 1
    FROM: kom_qabz.kom_qabz_history
    WHERE h.copy_time > = TO_DATE ('20120803', 'YYYYMMDD') - 1
    AND h.copy_time < TO_DATE ('20120803', 'YYYYMMDD')
    AND h.qabz_number = q.qabz_number
    AND h.seriya_id = q.seriya_id)
    GROUP BY q.user_name

    Is there any problem?

    Hello

    Has received the kom_qabz schema for the workspace of the application when you generate the report?

    See you soon,.

Maybe you are looking for

  • My Satellite L40 Hibernate when I close the lid

    I have a L40 with XP SP2, and the 'power Management' advance got, I clicked Hibernate when coses cover. But it's simple ignore and do not hibernate. How I fix this problem. Thank you

  • How to recover my hotmail password without answering security question?

    Trying to retive my password using the email sent to me by microsoft, said in the mail that I have 4 options to recover the password. I followed the steps and it brings me only to two options. 1. to get it from an email which is inconvinient, because

  • HP Pavilion Elite m9402f PC reformat

    Hello. Can someone tell me how to reformat my computer? I just want to erase all data that could possibly have virus in there, but I don't want to lose the software such as Adobe, Micrsoft windows and etc, I installed. Your help would be much appreci

  • XP pro sp3 standalone - best secuity settings

    Y at - it a model or something that can define the security settings for user rights assignment, and Security Options in local policies? It's my home PC and I'm the only one using it.  It's a real pain in the a$ $ but I need to turn my as secure as p

  • Mouse pointer disappears on the Dell coming 11 Pro

    No one ever turns on their DV11P and their mouse pointer is no where? because it happens often. I can still use it even if its invisible but it sometimes annoying to have to restart my computer just to see again. all the solutions to put an end to go