Developer Mode error: outdated data

Hello
I developed a page with a few items on it and create AM, OT and VO (EO-based). I didn't write any additional code in the class controllder or AMImpl. When I run the page his throw me Developer Mode error. Stale data.

and gave the following error message

Cause:
The view XXEOView1 object did not contain any record. The records displayed may have been deleted, or the current record of the view object is not properly initialized.


Help, please!

Thank you
Sunny

Sunny,

You must initialize the XXEOView1 in RA.

//Sample code to use in AM
public void initQuery()
  {
    OAViewObject vo = (OAViewObject)getXXEOView1();

    if (!vo.isPreparedForExecution())
    {
      vo.executeQuery();
    } 

    Row row = vo.createRow();
    vo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);

  } 

Kind regards
GYAN

Tags: Oracle Applications

Similar Questions

  • Developer Mode error: outdated., the xxAM.xxVO1 view object contained no trace. The records displayed may have been deleted, or the current record of the view object is not properly initialized.

    Hi all

    I'm creating a Maunal search page.

    To do this, I created a view based on a custom display object.

    Page contains 2 parameters.

    If I give all settings and click the OK button.

    It gives the following error.

    Developer Mode error: outdated data


    This page contains outdated information. This error could have been caused by the use of the buttons of the browser (the browser back button, for example). If the browser navigation buttons were not used, this error may result from coding errors in the application code. Please check press the back button on the browser developer guide - view primary key object comparison section to review the main cause of this error and correct the mistakes of coding.


    Cause:
    The view BLTrinDisplayAM.ViewVO1 object did not contain any record. The records displayed may have been deleted, or the current record of the view object is not properly initialized.

    To visit, please click on the Home link at the top of the application page to return to the main menu. Next, go to this page using the app's navigation controls (menu, links and so on) rather than use the controls of the browser as rear or front.

    If I don't give any parameter and click go Button.The content of the view are displayed.

    So if I pass all parameters and click Go, then the corresponding record is displayed.

    Why, for the first time, if I give the parameter and click Go, obsolete data error is coming?

    Please help me.

    Grateful for your help!

    -Aren

    You use the object of the view for the search criteria and search results fields.

    I suggest you to remove references of VO fields of search criteria, item1 and item2.

    And in the event of the button 'Go' in the processFormRequest, get the criteria for field values entered by the user as below and run the object (ViewVO1) of the view by using these values.

    String buCode = pageContext.getParameter ("item1");

    String lsiCode = pageContext.getParameter ("item2");

    Thank you

  • Please help with error: outdated data (screenshots inside)

    Hello

    I'm new to OAF and I develop a data entry page, I get an error when I press Apply to submit the record of entry:

    Page:

    Untitled3.jpg

    Error:

    Untitled1.jpg

    Untitled4.jpg

    InsertCO.java:

    /*===========================================================================+
    |   Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA    |
    |                         All rights reserved.                              |
    +===========================================================================+
    |  HISTORY                                                                  |
    +===========================================================================*/
    package prajkumar.oracle.apps.fnd.insertdemo.webui;
    
    
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.jbo.domain.Number;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.OAWebBeanConstants;
    
    
    /**
    * Controller for ...
    */
    public class InsertCO extends OAControllerImpl
    {
      public static final String RCS_ID="$Header$";
      public static final boolean RCS_ID_RECORDED =
            VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    
    
      /**
       * Layout and page setup logic for a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
       */
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
      {
        super.processRequest(pageContext, webBean);
        
            if (!pageContext.isFormSubmission())
            {
             OAApplicationModule am = pageContext.getApplicationModule(webBean);
             am.invokeMethod("createRecord", null);
            }
          
          }
    
    
    
      /**
       * Procedure to handle form submissions for form elements in
       * a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
       */
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
      {
          super.processFormRequest(pageContext, webBean);
           OAApplicationModule am = pageContext.getApplicationModule(webBean);
           // Pressing the "Apply" button means the transaction should be
           // validated and committed.
                      
           if (pageContext.getParameter("Apply") != null)
           {
            OAViewObject vo = (OAViewObject)am.findViewObject("InsertVO1");
            String JobNumber = (String)vo.getCurrentRow().getAttribute("JobNumber");
            String JobDescription = (String)vo.getCurrentRow().getAttribute("JobDescription");
                             
            am.invokeMethod("apply");
                             
            // Create a FND Message with name "TEST_CREATE_CONFIRM" with two
            // tokens                 
            MessageToken[] tokens = { new MessageToken("JOB_NUMBER",JobNumber),
                                      new MessageToken("JOB_DESCRIPTION",JobDescription)
                                    };
         
            OAException confirmMessage = new OAException( "FND",
                                           "TEST_CREATE_CONFIRM", tokens,
                                           OAException.CONFIRMATION, null);
           
              
            pageContext.putDialogMessage(confirmMessage);
            pageContext.forwardImmediately(
             "OA.jsp?page=/prajkumar/oracle/apps/fnd/insertdemo/webui/InsertPG",
              null, OAWebBeanConstants.KEEP_MENU_CONTEXT,
              null,
              null,
              true, // retain AM
              OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
           }
      }
    
    
    }
    
    
    
    
    
    
    
    
    
    
    
    

    Untitled2.jpg

    InsertAMImpl.java:

    package prajkumar.oracle.apps.fnd.insertdemo.server;
    
    
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.apps.fnd.framework.server.OAViewObjectImpl;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.jbo.Row;
    import oracle.jbo.Transaction;
    
    
    // ---------------------------------------------------------------------
    // ---    File generated by Oracle ADF Business Components Design Time.
    // ---    Custom code may be added to this class.
    // ---    Warning: Do not modify method signatures of generated methods.
    // ---------------------------------------------------------------------
    public class InsertAMImpl extends OAApplicationModuleImpl {
        /**This is the default constructor (do not remove)
         */
        public InsertAMImpl() {
      
        }
    
    
        /**Sample main for debugging Business Components code using the tester.
         */
        public static void main(String[] args) {
            launchTester("prajkumar.oracle.apps.fnd.insertdemo.server", /* package name */
          "InsertAMLocal" /* Configuration Name */);
        }
    
    
        /**Container's getter for InsertVO1
         */
        public OAViewObjectImpl getInsertVO1() {
            return (OAViewObjectImpl)findViewObject("InsertVO1");
        }
      
        public void createRecord()
        {
          OAViewObject vo = (OAViewObject)getInsertVO1();
       
          if (!vo.isPreparedForExecution())
          {
                vo.executeQuery();
          }
       
          Row row = vo.createRow();
          vo.insertRow(row);
          row.setNewRowState(Row.STATUS_INITIALIZED);
        }
      
        public void apply()
        {
          getTransaction().commit();
        }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    Please notify.

    Kind regards

    Joe

    I think that you referenced the AM several times on the Page that causes the error.

    See you soon

    AJ

  • 9214 OR problem with a common mode error

    Hey,.

    I take readings using thermocouples type k using the NI 9214 module in a cRio.  System works very well at room temperature, but once I take the surroundings up to 300 ° C thermocouple, I get the error message: "a common mode error has been detected."

    I use the NI 9214 mode high resolution, with disabled OTD.  I went through the documentation on the error, but it is light on the proposed solutions.  I wonder if anyone else has seen this, and if so, how you solved it.

    Thank you!

    Hey GiantDeathRobot,

    Thanks for the reply! It was very useful.

    Let me start with additional information about my setup.  I use a k type thermocouple in a vacuum chamber to measure stuff inside.  I have the NOR-9214 in a just plug cRIO of data of the current temperatures.  Thermocouples are unshieleded in the room, but are exposed to the end inside the room.

    Your comment to the ground made me think that there might be a problem of noise EFM.  So I solved my problem in a weird Garland.  I had the commune for the NI 9214 connected to the nut of the common leg of the connector.  I added a ground cable from the power strip that I use to power all of the components of the House (including the cRIO) cRIO chassis.  This completely clears my noise problem.  I thought I'd follow upward, in case anybody out there is struggling with this as well.

  • cannot start a campaign bed error no data found for 03/01/1943

    HAVE RECENTLY REINSTALLED CFS3, BUT CAN'T START A CAMPAIGN MESSAGE IS DISPLAYS NO DATA FOUND FOR ALLIANCE FOR MARCH 1

    1943

    Hello

    Thanks for posting the request in the Microsoft community forums.
    I understand that you receive the error "no data available for the alliance for March 1 appears" when you start Combat Flight Simulator 3.
    Please answer the following question:

    What version of the operating system is installed on the computer?

    Try to follow the suggestions and check if you can start Combat Flight Simulator 3.

    Method 1:
    The link below doesn't have any information on the compatibility of the game with Windows 7.
    http://www.microsoft.com/en-us/windows/compatibility/win7/CompatCenter/ProductViewerWithDefaultFilters?TempOsid=win7&Locale=en-us&TextSearch=Combat%2BFlight%2BSimulator%2B3&Type=Both&CurrentPage=0&TotalPages=1&ShowCriteria=0&SortCriteria=Relevance&Compatibility=Unknown&LastRequested=14

    If the game is not compatible with Windows 7, then you try to install the game in compatibility mode and check:
    Make older programs in this version of Windows
    http://Windows.Microsoft.com/en-us/Windows7/make-older-programs-run-in-this-version-of-Windows

    Method 2:
    If the problem persists you can then put the computer to boot and try to install the game and check if that helps.

    To do this, follow the steps in this link:

    http://support.Microsoft.com/kb/929135

    Note: After the adventures of shooting set the computer to start as usual by performing step 3 above to the Knowledge Base article.

    Hope the information is useful. If you need help with Combat Flight Simulator 3, feel free to post you question in the forum. We will be happy to help you.

  • Development in error "Installer.exe has stopped working" while installing the new modem.

    Development in error "Installer.exe has stopped working" while installing the new modem. I try to install the ZTE AC8710 modem on my 32-bit windows vista (home edition) system, but whenever the facility is subject to the full I get the error 'Installer.exe has stopped working' and complete Setup doen't. The same error is hit when I try to uninstall the ZTE modem that is installed intestinal. The installation file has CD/install drivers for windows vista. Information below is displayed in the application event viewer for this error log. Help, please

    Log name: Application

    Source: Application error

    Date: 2010-01-03 02:04:50

    Event ID: 1000

    Task category: (100)

    Level: error

    Keywords: Classic

    User: n/a

    Computer: Monica-PC

    Description:

    Application Installer.exe, version 0.0.0.0, time stamp 0x4b208462, Installer.exe module, version 0.0.0.0, time stamp 0x4b208462, exception code 0 x 40000015, offset error 0x0002efec, 0xadc process id, failed failed application start 0x01cab8b5797299e1.

    The event XML:

    1000

    2

    100

    0 x 80000000000000

    309

    Application

    Monica-PC

    Installer.exe

    0.0.0.0

    4b 208462

    Installer.exe

    0.0.0.0

    4b 208462

    40000015

    0002efec

    ADC

    01cab8b5797299e1

    Hi Tonio saini,.

    Navigate to the location of the programs .exe file and right click on the .exe file, and then select run as administrator to install the modem.

    You can also check the following link, try the suggestions and check if that helps:

    http://social.answers.Microsoft.com/forums/en/w7hardware/thread/4ce21286-3a77-4A06-923c-889d657f8e33

    Hope this information is useful.

    Jeremy K
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • RAW of Nikon D810 images appear darker after importation develop mode - why?

    Hello

    I have a problem with the LR. I shoot in raw, and after copying the files on my pc, I choose several pictures and import them into LR. After this step, I want to continue with the mode of development. Subsequently the following problem: the image in the develop mode has changed - it's much darker and the colors aren't the samet. Even if I change the example flat camera mode I get the same resuslt as the original raw file. I do not understand the problem - maybe you can help me?

    Thanks in advance

    Jurek

    Camera: Nikon D 810

    LR version 5.7

    The color space, running on the development module and the library module is completely indifferent to what looks like your image. It is not serious, and the difference is extremely subtle and really visible only on the screens of the range very high-end. In addition, color space in develop is not prophotoRGB, it is once again a linear gamma with primary prophotoRGB but space called MelissaRGB which is quite different, not important for this.

    He must know one thing more to diagnose your problem: when you return to the library, the images are dark or do they go back to the Lite version? If so, you are dealing with several possibilities. The first is as already mentioned a monitor profile. You should re - calibrate your monitor with hardware calibration. If you don't have that, test that possibility by assigning the sRGB profile to your monitor in the monitor properties pane. If this fixes it, you must get a puck of calibration to calibrate your monitor, the problem is caused by a bad monitor profile that has been installed by an update of the system. These are very common on the windows platform and even if other applications behave normally, that is the question.

    Second option is that your graphics card is not dealing with well GPU acceleration and omitting the color management. Test by going in the Lightroom preferences, selecting the tab performance and power of the graphics card acceleration off. Restart Lightroom and check. (update: I see that you are on LR 5.7: this option does not exist here so ignore this notice)

    If none of these fix the problem, and after that you spent to develop, the image is too dark in the library, that several other issues could occur. First is that you may have set a default value for the camera. Make sure the settings are zero on your images after importation. They could be zero if you apply a preset to the importation, or when you set a default development setting. Reset it by going to preferences-> presets, and then click 'reset all settings default development. " You see the change of the image when you go in develop because the library, firstly the jpeg preview the generated camera is shown and only when you are going to develop is the actual raw image get rendered by Lightroom.

    Another issue that could happen is that you use dynamic lighting on your camera modes. Nikon calls these active D-lighting. You must completely disable those. What the camera does when you have those active is to underexpose the image by a stop or two and then highlights the tag of the raw image with an indicator that shows the Nikon software to increase exposure compensation and make an HDR processing on the image to trigger shadows and bring down. Lightroom can not read these tags and just makes the image from raw data (which are underexposed!). In the library first see you the jpeg in-camera image and that the image was made by the camera using the HDR technique. You are better expose properly and leaving these modes if you want raw data of highest quality.

  • How to remove the ADF LOV error no data input validation validates

    Hi all


    I am developing a custom Application of ADF, in my custom, ADF application as part of the home page, I have a set of ADF LOVs as well as a custom to "Seek" button and the button 'Clear' ADF. the erase button is used before every new search is called. the "Clear" button and search button work properly, except that when the user enter all the values in the LOV text box and then press the Clear button, the LOV throws an exception indicating invalid in LOV data and won't let me delete them until I have explicitly focus the cursor in the LOV and use remove / return back to clear this field If the LOV has valid data and when I click the button clear clears the field as it was planned.

    Please suggest how can I delete the message 'Error in data not valid' in LOV

    Thanks in advance,
    TK

    Hello
    You can try with

    http://download.Oracle.com/docs/CD/E12839_01/apirefs.1111/e12419/tagdoc/af_resetActionListener.html

  • Turn on developer mode in ipad

    How to enable developer mode in ipad. I am a developer, I need to test apps I wrote in xcode need help

    Hello theKelvs,

    What have you tried so far? I think that you just plug in your device and run.

  • Chromebox: developer mode chromebox

    I recently bought a HP chromebox to use a kiosk application. However, to completely install the kiosk application in the way I need to, I need to switch to developer mode.  In accordance with the instructions that I have to

    To call the developer/restore mode, you insert a paperclip and press the RESET BUTTON (just beside the kensington lock) and press the power button. Release the RESET BUTTON after a second.

    Mode Dev first call you the recovery and to the recovery screen, press Ctrl-D (there is no prompt - must be made). It will ask you to confirm by pressing the reset BUTTON again.

    Dev-mode works as always: it will show the scary start screen and press Ctrl-D or wait 30 seconds for initialization.

    However, when I do this the box does not send any video signal to my HDMI screen so I am completely in the dark as to what is happening, if anything. I tried with a wired USB keyboard and a USB wireless keyboard, same result: nothing seems to happen.

    Who has an idea to switch to developer mode on thisHP chromebox? (Not a chromebook)

    Hi @StephanvR,

    Steps performed by you to switch to Dev Mode seems to be OK.

    As you mentioned that you have connected the display via HDMI and there is no display.

    Therefore, you can try to connect to display Port (DP) and check if there are any screen.

    I hope that answers your question.

    I am an employee of HP, the views expressed here are my personal opinions, not HP.

    Make it easier for others to find solutions, marking my answer "Accept as Solution" if it solves your problem.

    Click the "Thumbs up" button to the left side of my post to recognize the message *.

  • Satellite A210 - cannot use the recovery disk - error 20-DATA-048F

    I'm going to use the cause of recovery partition does not work my windows, and whenever I do it, it comes up with an error "20-DATA-048F.

    How can I fix my computer!

    Any help would be greatly appreciated.

    Have you tried to format the HARD disk until you try to use the recovery disk?
    Sometimes, I read in the forum that this may solve the problems with the recovery disk and so you can take the Windows XP disc or another tool that is able to format the drive.

    But after that, you have the Toshiba recovery disc. You are not able to use the HARD drive recovery feature.

  • Not able to run standalone LabVIEW RT application cRIO (works well in development mode)

    Strange question.

    I'm trying to deploy an application of RT to a controller for cRIO-9074.  I developed the application in development mode and everything works and seems to be being debugged.  However, when I try to build and to deploy the application as the startup, the application seems to start running, then stop cold (based on the CPU usage as described in the Distribution System Manager OR).  At this point, I can't debug because the application is stopped (no updated variable).

    The problem seems to be related to the NI_AALPro.lvlib library, because if I turn off the function polynomial evaluation, the code will compile and start fine.  I'm tempted to recreate the necessary functions and create my own library, but I prefer to find the problem and fix it rather than re-create the wheel...

    Is it possible that the library badly uploaded to the controller?  If so, is it possible to force the appropriate library to be transferred to the controller?

    Thanks for any help.

    Toader,

    Thanks for the reply.

    I think I solved the problem.  For some strange reason, the functions inside the NI_AALPro.lvlib were not available on the cRIO at run time when the application tried to run in stand-alone mode.  I ended up adding the library to the section to always include the source files tab in build specification and the program runs now.  I'm not sure what it is, but it works.

    Thank you Morgan of NOR.

    Kind regards

    Big Ev

  • TestStand database error - error converting data from nchar int type.

    Hello

    I used SQL standards database stored procedure options to store records of my test and I added the generated tables and stored procedures in a database and it seems to work OK in this form. However when I change the UUT_Results table to include a new column that contains the value of the primary key of another table in the database that I meet problems.

    I run a query that returns the primary key value (integer) for a given series number and stores the result as a global station (number format). The correct value is stored in the variable, but when I try to use this value in the stored procedure I get an error like below:

    An error occurred calling "LogResults" in "ITSDBLog" of "ZNIUGOL TestStand database logging"
    An error has occurred by executing a statement.
    Schema: SQL Server Stored Proc (NOR)
    Statement: UUT_RESULT.
    Description: Error converting data from nchar int type.
    Number:-2147217913
    NativeError: 8114
    SQLState: 22018
    Reported by: provider Microsoft OLE DB for SQL Server

    Source: TSDBLog

    My SQL statement for creating the table and the procedure for UUT_results are below:

    ~
    CREATE TABLE UUT_RESULT)
    Uniqueidentifier PRIMARY KEY ID,
    BoardDetailID int,
    STATION_ID varchar (255),
    BATCH_SERIAL_NUMBER varchar (255),
    TEST_SOCKET_INDEX int,
    UUT_SERIAL_NUMBER varchar (255),
    USER_LOGIN_NAME varchar (255),
    START_DATE_TIME is datetime,
    EXECUTION_TIME float,
    UUT_STATUS varchar (32),
    UUT_ERROR_CODE int,
    UUT_ERROR_MESSAGE varchar (255)
    CONSTRAINT UUT_RESULT_FK FOREIGN KEY (BoardDetailID) made REFERENCE BoardDetails)

    ~
    CREATE PROCEDURE InsertUUTRESULT
    @pID uniqueidentifier,
    @pBoardDetailID int,
    @pSTATION_ID varchar (255),
    @pBATCH_SERIAL_NUMBER varchar (255),
    @pTEST_SOCKET_INDEX int,
    @pUUT_SERIAL_NUMBER varchar (255),
    @pUSER_LOGIN_NAME varchar (255),
    DateTime @pSTART_DATE_TIME.
    float of @pEXECUTION_TIME.
    @pUUT_STATUS varchar (32),
    @pUUT_ERROR_CODE int,
    @pUUT_ERROR_MESSAGE varchar (255)
    AS
    INSERT INTO UUT_RESULT (ID, BoardDetailID, STATION_ID, BATCH_SERIAL_NUMBER, TEST_SOCKET_INDEX, UUT_SERIAL_NUMBER, USER_LOGIN_NAME, START_DATE_TIME, EXECUTION_TIME, UUT_STATUS, UUT_ERROR_CODE, UUT_ERROR_MESSAGE)
    VALUES)
    @pID,
    @pBoardDetailID,
    @pSTATION_ID,.
    @pBATCH_SERIAL_NUMBER,.
    @pTEST_SOCKET_INDEX,.
    @pUUT_SERIAL_NUMBER,.
    @pUSER_LOGIN_NAME,.
    @pSTART_DATE_TIME,.
    @pEXECUTION_TIME,.
    @pUUT_STATUS,.
    @pUUT_ERROR_CODE,.
    @pUUT_ERROR_MESSAGE)

    Any help would be appreciated,

    Thank you

    Stuart

    Stuart-

    What is the expression you are evaluating and the data type of the parameter that you defined in the Options database dialog box for the schema that you connect to data with?

  • airplane mode disables mobile data.

    I realized on my mobile that, once I have activate airplane with mobile data mode, it is not turn off mobile data.

    It is always on wifi turns off.

    If there is a way to disable mobile data automatically with the airplane mode?

    Yes, I had there.

    It is the nature of Android itself and as I said, when you switch to airplane Mode, the Mobile data is indeed disabled but not to the OFF position.

    Hope that clarifies everything!

  • How to fix an error asreg01.dat

    During the closing of Flight sim X I get this error - asreg01.dat a mistake.

    Hello

    (1) what is you receive the exact error message?

    (2) since when are you facing this problem?

    (3) remember to make changes?

    Select the boot and then check if the problem persists

    Follow step 1 in the link below,
    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    Important: n ' forget not to put the computer to a normal startup follow step 7 in the link.

    To support more specialized on this issue, you can republish your request here
    http://www.Microsoft.com/products/games/FSInsider/tips/pages/default.aspx

    Or you can contact the support
    Help and Support

Maybe you are looking for

  • Laptop HP 15-ac153ca: Please help: code pin/password Incorrect

    My laptop had an update and when he was done, he told me my PIN was incorrect, and I can not reset my password because the email associated with my laptop is one that I deleted. I don't even remember the password because I stopped using this email. I

  • Frustration with the e-mail software

    Hello First of all, I think that I am posting this in the wrong place because it does not only refer to the Mavericks, as far as I know (and the last years of different operating systems). But I've been staring at the screen for 5 minutes trying to f

  • Another failure of SP2

    Function update SP2 fails... What is after the other updates correctly.   I get an error saying that it failed.  Well have SP1.  With the help of Ultimate 64.

  • HelloW.Help with driver

    Hello, my laptop a HP Pavilion g6 owner. I don't know the specific model and I don't have sticker, I removed it. I formatted my laptop, I tried drivers for my laptop the g6 series, and I could not solve my problem of the internet, which is - the aint

  • Impossible to click on the desktop icons

    I recently problems with windows 7 64 bit. When I start the pc all works fine but after surfing the internet for a while I find can not click on the icons on the desktop but the start menu still works fine. I have run a virus check using an updated t