How to use the concepts Advanced PL/SQL in oracle reports and forms

Hi all

Can anyone suggest me how to use the Concepts(nested tables,PAA,Varrays,Objects...) Advanced PL/SQL in Oracle forms.

In fact, I created a Table whose column of type Varray. now, I want to create an element in oracle forms on this field. can anyone suggest me how to proceed.

Thank you
Kumar

Hello

Take a look at this one:
http://SheikYerbouti.developpez.com/tutoforms10g/tutoforms10g.htm
especially the chapter on the block that contains a collection of (2.3.3). The sample is built around a nested table, but you get the idea to adapt to work with a varray.

Kind regards
Alex

If someone useful or appropriate please mark accordingly.

Tags: Oracle Development

Similar Questions

  • How to use the Smart zero 4.4.0 customer service and HP Profile Editor to activate chip cards

    I have a T610 HP Smart Thin Client from scratch and I get zero Smart software to recognize the card chip when connecting. How to use the Smart zero 4.4.0 customer service and HP Profile Editor to activate chip cards. You can configure without the profile HP of the XML editor.

    Mike Sieradzki

    Hello ski_mike.

    Welcome to the HP Forums. I understand that you want to support with your Smart Client zero. However, it is a commercial product. To get assistance, thank you for posting your question on the business Forums HP: HP Enterprise Business Community

    Thank you

    Mario

  • How to use the API of PL/SQL DBFS

    Hi guys,.

    I re-post this question to see if someone can help out me. I'm trying to use the API of PL/SQL DBFS to manipulate the files stored in DBFS.

    Details of the environment:
    Windows 7 or 5.5 OEL (I tried both platforms)
    Database: Oracle DB EE 11.2.0.2
    IDE: SQLDeveloper on Windows 7

    I have two users, DBFS_USER, who is the shop owner DBFS and MYUSER that connects to the store to manipulate files using the API of PL/SQL DBFS.

    Creation scripts:
    -----------------
    Connect / as sysdba;

    Dbfs_ts CREATE TABLESPACE DATAFILE 'D:\oracle\oradata\orcl\dbfs01.dbf' SIZE 1 M AUTOEXTEND ON NEXT 1 M;

    -create users
    create dbfs_user user identified by dbfs_user quota default tablespace unlimited dbfs_ts on dbfs_ts;
    create myuser identified by myuser;

    -grant the role
    GRANT RESOURCES, CREATE VIEW, CREATE SESSION, DBFS_ROLE, CREATE TABLE TO dbfs_user.
    GRANT RESOURCES, CREATE VIEW, CREATE SESSION, DBFS_ROLE, CREATE TABLE TO myuser.

    -create a filesystem (such as DBFS_USER)
    connect dbfs_user/dbfs_user;

    exec dbms_dbfs_sfs.createFilesystem ('STAGING_AREA_FS');

    exec dbms_dbfs_content.registerStore ('STAGING_AREA_FS', 'posix', 'DBMS_DBFS_SFS');

    dbms_dbfs_content.mountStore exec ('STAGING_AREA_FS', 'staging_area');

    commit;

    -export store STAGING_AREA_FS (as DBFS_USER)

    exec dbms_dbfs_sfs.exportFilesystem ('STAGING_AREA_FS');

    -Check the names of table (like MYUSER)
    connect myuser/myuser;

    -He can't see (without brackets)
    Select * from table (dbms_dbfs_content.listMounts);

    -Note at the bottom of the table table_name
    Select * from table (dbms_dbfs_sfs.listTables);

    -Mount as MYUSER (example with SFS table_name $ _FST_32)
    dbms_dbfs_sfs.registerFilesystem exec ('MYUSER_FS', 'DBFS_USER', ' FS$ _FST_32');

    exec dbms_dbfs_content.registerStore ('MYUSER_FS', 'posix', 'DBMS_DBFS_SFS');

    dbms_dbfs_content.mountStore exec ('MYUSER_FS', 'staging_area');

    commit;

    -verification of Mount (like MYUSER)

    Select * from table (dbms_dbfs_content.listMounts);

    Select the path in dbfs_content;


    CREATE a STORED PROC (like MYUSER)
    ----------------------------

    CREATE OR REPLACE PACKAGE MYUSER_PKG

    CreateDirectory function
    (P_File_Path IN VARCHAR2,
    P_ErrMsg OUT VARCHAR2)
    return number;

    END MYUSER_PKG;

    /


    CREATE OR REPLACE PACKAGE BODY MYUSER_PKG

    CreateDirectory function
    (P_File_Path IN VARCHAR2,
    P_ErrMsg OUT VARCHAR2)
    Return number
    IS
    l_Return NUMBER;
    l_props DBMS_DBFS_CONTENT. PROPERTIES_T;
    BEGIN
    l_Return: = 0;

    () DBMS_DBFS_CONTENT.createDirectory
    path = > P_File_Path,
    Properties = > l_props);

    RETURN l_Return;
    EXCEPTION
    WHILE OTHERS THEN
    l_Return: = NVL (SQLCODE,-1);
    P_ErrMsg: = SQLERRM;
    RETURN l_Return;
    CreateDirectory END;

    END MYUSER_PKG;

    /

    When you compile the package, I get this error:
    Error (9,11): PLS-00201: identifier 'DBMS_DBFS_CONTENT' must be declared
    Error (9,11): PL/SQL: ignored element
    Error (13.3): PL/SQL: statement ignored
    Error (15,19): PLS-00320: the declaration of the type of the expression is incomplete or incorrect

    How can I solve the problem in the error message? I'm not an expert in DB. I used this reference documentation: http://download.oracle.com/docs/cd/E11882_01/appdev.112/e18294/adlob_client.htm#CIHDEJAA

    Thanks in advance.

    CAPPA

    You must directly grant the privileges of DBFS_ROLE because roles are not enabled in stored PL/SQL:

    SQL> select* from v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    
    SQL> show user
    USER is "SYS"
    SQL>
    SQL> create user myuser identified by myuser;
    
    User created.
    
    SQL> GRANT CREATE SESSION, RESOURCE, CREATE VIEW, DBFS_ROLE, CREATE TABLE TO myuser;
    
    Grant succeeded.
    
    SQL>
    SQL> begin
      2  for x in (select privilege, table_name
      3           from dba_tab_privs
      4           where grantee='DBFS_ROLE')
      5  loop
      6   execute immediate 'grant ' || x.privilege || ' on ' || x.table_name
      7   || ' to myuser ';
      8  end loop;
      9  end;
     10  /
    begin
    *
    ERROR at line 1:
    ORA-22812: cannot reference nested table column's storage table
    ORA-06512: at line 6
    
    SQL>
    SQL> connect myuser/myuser
    Connected.
    SQL>
    SQL> CREATE OR REPLACE PACKAGE MYUSER_PKG IS
      2  Function CreateDirectory
      3  (P_File_Path IN VARCHAR2,
      4  P_ErrMsg OUT VARCHAR2)
      5  return Number;
      6  END MYUSER_PKG ;
      7  /
    
    Package created.
    
    SQL> show errors
    No errors.
    SQL>
    SQL> CREATE OR REPLACE PACKAGE BODY MYUSER_PKG  IS
      2  Function CreateDirectory
      3  (P_File_Path IN VARCHAR2,
      4  P_ErrMsg OUT VARCHAR2)
      5  return Number
      6  IS
      7  l_Return NUMBER;
      8  l_props DBMS_DBFS_CONTENT.PROPERTIES_T;
      9  BEGIN
     10  l_Return := 0;
     11  DBMS_DBFS_CONTENT.createDirectory (
     12  path => P_File_Path,
     13  properties => l_props);
     14  RETURN l_Return;
     15  EXCEPTION
     16  WHEN OTHERS THEN
     17  l_Return := NVL(SQLCODE, -1);
     18  P_ErrMsg := SQLERRM;
     19  RETURN l_Return;
     20  END CreateDirectory;
     21  END MYUSER_PKG ;
     22  /
    
    Package body created.
    
    SQL> show errors
    No errors.
    

    You should check why some GRANT statement fails if you have another problem with the other piece of code.

  • How to use the two counters to PXI-6280, to read and write at the same time?

    Hi all

    I try to use PXI-6280 counter to generate a command of step motor pulse train.  The idea is to send a number done and known pulse for the engine, which belongs to a system XYZ. The point is, if, at some point, the user or the security system can interrupt the movement. If this happens (and will be... a lot), I will lose the real position, because I don't know how many pulses were actually sent to the engine. That is why I want to use the other cost to count impulses how were actually sent to the engine. I can start any tasks (generating or account), but only the first started task will operate. I met a couple of mistakes and I'm not able to find a solution.

    Is it really possible to use the two counters? I've already done this in a pci system and worked without problems.

    Thanks in advance,

    Giavonna

    Electrical engineer

    I'm afraid that I don't understand your idea. Could explain you better?

    Material of the series M support pointing to an arbitrary digital signals at rates (the clock must be provided from another source, for example a counter).  If you want a digital pulse train finished output and have access to a counter (the two counters if find you another source for your clock, for example the subsystem "output frequency"), you must use this subsystem 'digital output' rather than the output of the counter.  There should be examples in the finder of the example shows how to configure a finished task of digital output.

    Now I'm generating sample clock having a single Timed material Point (the only mode accepts this mode), and configure the counter with finite samples.

    I don't think not just single point NI the hardware, that's what you want.  More commonly, output meter tasks use timing 'Implied', where the release date is implicitly determined by the characteristics of the pulse user-defined.

    Is there a way to stop the production of only one meter when a finite number of pulses has been played in another counter?

    Yes, but it's a little tricky.  You can set a trigger 'Pause' on the output task, with the soruce the break being the internal release of the counter used for the task of entry.  Set the initial value of the counter of entry to 2 ^ 32-N (or maybe 2 ^ 32-1-N, I don't have a system right now to check) where N is the desired number of pulse output.  Together the counter event behavior for the counter edges of County switch output (this is a property of DAQmx export Signal).  When the counter of entry reaches terminal, its in-house production switches, causing thus the task of output to pause.  You can then stop the task in the software (you should be able to use the output of the task of entry counter event to signal to the software when the output is paused).

    Now that I've written that the whole paragraph, I remember something * similar * to work around a limitation of the driver here .  It is not quite the same implementation I described above, but really, you can use a meter output or a counter entry to get the same effect (it could be a good place to start anyway if you want to try this).

    Is there a way to read pulses them how have been generated, without the other counter, counting impulses?

    N °

    Best regards

  • How to customize the default behavior of Excel to Oracle reports

    We are generating an Excel report using report Builder10g.
    Loan_No. column is of type varchar, but the client has only numbers in there that is longer than 15 characters sometimes like (121231231123124324).
    The values in this column appear as 'Exponential' by 'E' Excel thinks that this value is digital (123213E).
    For the test, I add a Word to say of the character 'A' and a comma before this Loan_No as (A121231231123124324) /('121231231123124324'), then the Excel shows this fine Loan_No if she sees this as a tank.
    The other option customer request to manually change the column Loan_No in tank in Excel, once the report is generated.

    My question to this forum is... can we change the default behavior of Excel Report Builder... ?
    In other words, can we create an Excel Macros and add it to our code... while creating an Excel report?

    Aditi_Seth wrote:
    FS, I tried your suggestion too like that... in my sql to RDF query...
    ----------------------------------------------------------
    CE.quote_number "quote, #
    "= A('|| ce.loan_number||',"0»)' ' # of loans. "
    ----------------------------------------------------------
    but it generated this output for the Loan_No column: #NAME?

    "= A('|| ce.loan_number||',"0»)' ' # of loans. "

    Is this typo in this post, or you really put only "= A?

    This should be "= TEXT '.

  • How to use the SDLT tape drive in the guest OS VM

    Dear

    now, I have HP DL380 G5 Server running windows 2003 Ent. with bus adapter host SC11xe PCI - E HP which directly connected tp SDLT Tape Drive as backup server and use for the backup operation.

    I want to move the physical backup to host vmware server and EMC AX4 allows you to have a backup online and allows you to take backup offline, SDLT tape drive

    My question is how I use the SDLT tape drive in guest OS vm and vmware knows "HP PCI - E SC11xe Host bus adapter" or not.

    Please let me know how to do this.

    Kind regards

    Mahdi Bellavia

    I have a G5 DL385 (AMD of the DL380 version) with a DLT3.   I use an Adaptec 29320LPE, appearing on the compatibility list.  We plugged a HP Ultrium 920 changer using the 'old method' SCSI passthrough.  We bought the Adaptec card, because we used initially ESX3.5.  We are now on ESX4.0, but for various reasons, the configuration left the same, so I have not tried with VMDirectPath I don't know if it is possible to use the SC11ex card, but if you arrive VMDirectPath at work, it seems then you need another SCSI card.

  • Run the report and form 12 c

    Hello

    As in D2k we where using ifrun.exe to run the Oracle report and form module giving a parameter, in the form of 12 c and point out how we're going to run the package.

    In the ifrun.exe target us where giving as

    C:\ORANT\BIN\ifrun60. EXE C:\ERP\ERP\ERPMODULE. FMX erp/erp@erpksy

    Sandy

    Please see the documentation.  Windows 10 is not a certified platform.  The installation program performs a check to determine if the platform you are installing on is acceptable.  Probably, he sees that you're on Win10 and exits.

    Reminder, the basic steps to install are the following (don't forget first install Windows loopback adapter if the machine doesn't have a static IP):

    1. install the JDK 8U51 + (x 64)

    2. install WLS Infrastructure 12.2.1

    3. install the forms/States 12.2.1

    4. run the repository creation utility (RCU)

    5. run the Setup Wizard (to create the domain)

    6. start the WLS Node Manager, Server Admin and WLS_FORM.  If Windows, you must use a DOS shell with administrator privileges to do this commissioning initial.  Otherwise will result in the field not be created properly.

    Guides to the system requirements and the Installation Guide is located in the library of Doc here:

    http://docs.Oracle.com/middleware/1221/formsandreports/index.html

    The matrix certification can be found here:

    http://www.Oracle.com/technetwork/middleware/Fusion-Middleware/documentation/FMW-1221certmatrix-2739738.xlsx

  • How to count the number of columns in an oracle table using sql

    How to count the number of columns in an oracle table using sql

    You must put the name of the table in capital letters

    As

    SELECT COUNT(1)
      FROM user_tab_columns
    WHERE table_name = 'EMP';
    
    or
    
    SELECT COUNT(1)
      FROM user_tab_columns
    WHERE table_name = UPPER('Emp');
    

    Concerning
    Arun

  • How to use the Group condition in the ODI mappings

    Hi Experts,

    I have a requirement in the customization of BI applications. Can you please someone explain how to use the LISTAGG function in odi mapping.

    I applied the LISTAGGR function at the level of mapping odi, but I get error below.

    Mapping of ODI: ColumnName: ENAME Expression: LISTAGG (EMP. ENAME, ",") THE GROUP (RANKING BY EMP. ENAME)

    Error:

    ODI-1240: Flow LIST_AGG_FUN_USAGE fails during an operation of integration. This flow of charge table target EMP_BI.

    ODI-1228: task failed LIST_AGG_FUN_USAGE (integration) on the scott_db of ORACLE target connection.

    Caused by: java.sql.SQLSyntaxErrorException: ORA-00937: not a function of simple-group


    Oracle query:

    If I used this sql query in the database the correct result is.

    SELECT DEPTNO, LISTAGG (ENAME, ',') WITHIN THE EMP EMP (ENAME CONTROL) GROUP. DEPTNO;

    Output:

    10CLARK, KING, MILLER
    20ADAMS, FORD, JONES, SCOTT, SMITH
    30ALLEN, JAMES, MARTIN, BLAKE, TURNER, WARD


    Please give your valid solutions, thanks in advance.

    Kind regards

    REDA

    If you try in #ODI12C then in the set of properties, you can select the column which should be used to group by.

    If it's 11g so its bit complicated. Simply replace the mapping with below codes.

    LISTAGG (EMP. ENAME, ",") WITHIN GROUP (ORDER BY ENAME) / * sum() * /.

    Magic!

    Thank you

    Chantal

  • How to use the TRUNC function with dates in the expression builder in OBIEE.

    Hello
    How to use the TRUNC function with dates in the expression builder in OBIEE.
    TRUNC (SYSDATE, 'MM') returns 1 July 2010"where sysdate is July 15, 2010 ' in SQL. I need to use the same in the expression builder in the logical layer mdb column.


    Thanks in advance

    Use it instead:
    TIMESTAMPADD (SQL_TSI_DAY, (DAYOFMONTH (CURRENT_DATE) *-1) + 1, CURRENT_DATE)

  • Satellite U300 - how to use the recovery disk?

    I inserted the recovery disc 1 and then restarted my computer, but nothing happened.
    I really need to fix my cause cell it's time to review!

    Does anyone know how to use the recovery disk or affecting function press when the laptop starts to use the programmed recovery?

    Thank you!

    Hello!

    If you have inserted the recovery disc you must only start her everything that s!

    I m not sure but I think you can go into the advanced boot menu if you press F12. Alternative change you the boot priority in the BIOS. You can access BIOS by pressing F2.

    Good bye

  • How to use the greenscreen on Imovie 10.1 effect?

    I have no idea how to activate Advanced tools for this version of iMovie, there is nothing in the preferences, how I use the greenscreen / any other adnaced tool such as the image within an image etc.

    I'm on OS X YOSEMITE 10.10.5

    Hello!

    I have finally (!) has found a way to do it!

    You must drag and drop the element above the other, not ON it (like I usually did before). Then the invisible square symbol in the setting bar appears, which allows to choose between the van greenscreen etc.

  • My question is how to open the system advanced settings in window 7 64-bit home preuim

    My question is how to open the system advanced settings in window 7 64-bit home preuim

    Hello

    Assuming you mean the Windows Advanced System Settings screen, then right click on my computer and choose Properties.  On the left side of the screen, you will see a link for the advanced system settings.

    You can also call directly my pressing the windows and R key (which will bring up the Run dialog box) and typing in control sysdm.cpl

    I would like to know how you, or if you want to say something else.

    Good luck & enjoy Windows 7
    Jon

    If this message was useful and allowed, please consider the vote and it offers as a response...

    My Blog - www.insidetheregistry.com

  • How to use the global variable in the table target?

    Hello

    I am trying to load several files into a single interface. the data is loaded successfully. 92. the files are there. for this I used variables and package.

    My requrement is 92 files of data loaded into the target table. I want to know what data from file.

    to this I added a column (filename) to the existing target table.

    If I used joints (not same condition), its totally wrong. all file names are coming.

    Please see the following screenshots.

    err27.jpg

    exit; target table.

    err26.jpg

    in fact in the target table. first 10 lines are coming from file.i.e first _ACCOUNT_LIMIT_511.TXT. but all the files names are coming.

    I'm confuse. After the first data file inserted then insert second data file. in that all file names are coming. Please help me.

    I thought that the global variable is preferable to identify the data came from which file.

    to do this, the global variable is used in the target table. I don't always have my exit.

    Please help me.

    Thanks in advance.

    err25.jpg

    Hello

    You can use the same way, how you use the project variable, just you have to do a thin is #GLOBAL.variable_name for example: #GLOBAL. SMART_AL_FILE_NAME_S

    Note: Make sure you that while you use one variable overall in interface, indicator should be staged as you chose above the screen

    hope this helps you

    Kind regards

    Phanikanth

  • How to use the PARTITION of EXCHANGE IKM

    Hi all

    I use IKM EXCHANGE PARTITION to load lots of data from a table that is not partitioned for a partitioned table.

    Is there any step that I have to follow?

    I put the source table in the source area and the target in the area.

    I select the IKM and run the task.

    Cattura.JPG

    ODI-1228: Prova_exch (Integrazione) of the task fails when the target SASSYS ORACLE connection.
    Caused by: java.sql.SQLException: ORA-14006: invalid partition name
    ORA-06512: at line 1

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
    at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1115)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1488)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3769)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3904)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1512)
    at com.sunopsis.sql.SnpsQuery.executeUpdate(SnpsQuery.java:712)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.executeUpdate(SnpSessTaskSql.java:3470)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execStdOrders(SnpSessTaskSql.java:1877)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java:3056)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java:68)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2623)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:577)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:468)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2128)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$ 2.doAction(StartSessRequestProcessor.java:366)
    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$ 0 (StartSessRequestProcessor.java:292)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$ StartSessTask.doExecute (StartSessRequestProcessor.java:855)
    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
    to oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$ 2.run(DefaultAgentTaskExecutor.java:82)
    at java.lang.Thread.run(Thread.java:745)

    This is the code:

    Start

    run immediately ' ALTER TABLE SASKPI. TEST_MILA SWAP WITH SASKPI TABLE PARTITION. I HAVE _TEST_MILA $ WITH VALIDATION';

    end;

    It's like ODI is unable to get the name of the Partition

    The following article describes how to properly use the KM

    http://www.Ateam-Oracle.com/using-Oracle-partition-Exchange-with-Oracle-data-integrator-ODI/

Maybe you are looking for

  • Satellite Pro A300 PSAJ1E wake up to sleep properly

    I have a new Toshiba Satellite Pro A300 / PSAJ1E - 018006EN problems similar too.When the mine goes into sleep mode it re - will not start unless the power button "many" times, finally it lights, but in safe mode and everything which was being develo

  • Error waiting on Windows XP (lktsrv.exe and nidmsrv.exe) stop

    I have several computers running GPIB-USB-HS, and when I turned off the computer, I noticed recently that intermittently, an error message appears for a few seconds and then the computer automatically continues its judgment.  I see two different erro

  • UPHClean not install on XPsp3, error message: uphcleanhlp.sys not found

    I tried to install UPHClean - Setup.msi and she runs up until the last bit of the installation.  He then told me that she can't finish and the installation will stop.  The error message is: "uphcleanhlp.sys" not found.  But I found myself in the fold

  • Application settings taking a lot of time in XP Pro

    What is strange, when I disconnect the network manager, it loads very quickly to the login screen.  If I reboot with the person responsible for the network is plugged, it hangs for about 3 minutes until he gets to the login screen.  Checking the same

  • Sharon

    Suddenly, I have to keep my HP laptop on end to read the screen.  How can I change this back?