Error message like

I just installed a HP update and I have now the following message is displayed on my screen "Windows 8.1 SecureBoot is not configuried properly build 9600 and I do not know how to solve this problem, because I don't know where to look.

Can you help me please

Hello

Apply the patch from Microsoft at the following link.

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

Kind regards

DP - K

Tags: Notebooks

Similar Questions

  • I can't access to our private internet connection... I get the error messages like acquiring network address AND identity validation

    problem network address acquisition
    I can't access to our private internet connection... I get error messages like acquiring network address AND validation of identity no matter how long I wait nothing happens... Please help me.

    create a new internet connection or reset TCP/IP socket

  • I get the error message like "error - ORA-29273 report: failure of the HTTP ORA-06512: at"SYS. " UTL_HTTP", line 1130 ORA-12535: TNS:operation expired ORA-06512: 37 29273 line. 00000 - "HTTP request failed" * Cause: package UTL_HTTP The Impossible to run

    I have tried the code

    DECLARE

    lv_url VARCHAR2 (1000): = ' http://shenzhoufellowship.org/main2/files/old/SpecialTopics/TheLoveDare.pdf';

    lc_return BLOB;

    lhttp_url httpuritype.

    Varriables - declared to have written the LOB to pdf file-

    l_file UTL_FILE. TYPE_DE_FICHIER;

    l_buffer RAW (32767).

    l_amount directory: = 32767;

    l_pos INTEGER: = 1;

    l_blob BLOB;

    l_blob_len INTEGER.

    BEGIN

    -create URIs

    lhttp_url: = httpuritype.createuri (lv_url);

    -get the PDF document

    lc_return: = lhttp_url.getblob ();

    -Open the destination file.

    l_file: = UTL_FILE. FOPEN ('MBO_INPUT_DIR', 'MBD.zip', 'wb');

    -Get the total length of the BLOB

    l_blob_len: = DBMS_LOB.getlength (lc_return);

    -Pieces of the BLOB to read and write to the file

    -full up.

    While l_pos < l_blob_len LOOP

    DBMS_LOB. READ (lc_return, l_amount, l_pos, l_buffer);

    UTL_FILE.put_raw (l_file, l_buffer, FALSE);

    l_pos: = l_pos + l_amount;

    END LOOP;

    -Closes the file.

    UTL_FILE. FCLOSE (l_file);

    EXCEPTION

    WHILE OTHERS THEN

    -Close the file if something goes wrong.

    IF UTL_FILE.IS_OPEN (l_file) THEN

    UTL_FILE. FCLOSE (l_file);

    END IF;

    LIFT;

    END;

    But make a mistake like:

    Error report-

    ORA-29273: HTTP request failed

    ORA-06512: at "SYS." UTL_HTTP", line 1130

    ORA-12535: TNS:operation expired

    ORA-06512: at line 37 level

    29273 00000 - "the HTTP request failed.

    * Cause: The UTL_HTTP package cannot run the HTTP request.

    * Action: Use get_detailed_sqlerrm to check the detailed error message.

    Correct the error and restart the HTTP request.

    Please suggest a solution. Is it possible to download a zip file with the same code?

    [oracle@localhost ~]$ sqlplus scott/tiger
    
    SQL*Plus: Release 11.2.0.1.0 Production on Mon Apr 6 13:59:09 2015
    
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL> --My Database version
    SQL> ----------------------
    SQL> SELECT * FROM v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    
    SQL> ed
    Wrote file afiedt.buf
    
      1  DECLARE
      2        lv_url    VARCHAR2(500) := 'http://shenzhoufellowship.org/main2/files/old/SpecialTopics/TheLoveDare.pdf';
      3        lc_return BLOB;
      4        lhttp_url httpuritype;
      5        ---Varriables declared for writing the LOB to pdf file --
      6        l_file     UTL_FILE.FILE_TYPE;
      7        l_buffer   RAW(32767);
      8        l_amount   BINARY_INTEGER := 32767;
      9        l_pos      INTEGER := 1;
    10       l_blob     BLOB;
    11       l_blob_len INTEGER;
    12     BEGIN
    13       --create uri
    14       lhttp_url := httpuritype.createuri(lv_url);
    15       --get the PDF document
    16       lc_return := lhttp_url.getblob();
    17       -- Open the destination file.
    18       l_file := UTL_FILE.FOPEN('SAUBHIK', 'TheLoveDare.pdf', 'wb');
    19       --Get the total length of the BLOB
    20       l_blob_len := DBMS_LOB.getlength(lc_return);
    21       -- Read chunks of the BLOB and write them to the file
    22       -- until complete.
    23       WHILE l_pos < l_blob_len LOOP
    24         DBMS_LOB.READ(lc_return, l_amount, l_pos, l_buffer);
    25         UTL_FILE.put_raw(l_file, l_buffer, FALSE);
    26         l_pos := l_pos + l_amount;
    27       END LOOP;
    28       -- Close the file.
    29       UTL_FILE.FCLOSE(l_file);
    30     EXCEPTION
    31       WHEN OTHERS THEN
    32         -- Close the file if something goes wrong.
    33         IF UTL_FILE.IS_OPEN(l_file) THEN
    34           UTL_FILE.FCLOSE(l_file);
    35         END IF;
    36         RAISE;
    37*    END;
    38  /
    DECLARE
    *
    ERROR at line 1:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1130
    ORA-24247: network access denied by access control list (ACL)
    ORA-06512: at line 36
    
    SQL> conn sys as sysdba
    Enter password:
    Connected.
    SQL> ed
    Wrote file afiedt.buf
    
      1  BEGIN
      2    DBMS_NETWORK_ACL_ADMIN.CREATE_ACL(acl         => 'love.xml',
      3                                      description => 'Love ACL',
      4                                      principal   => 'SCOTT',
      5                                      is_grant    => true,
      6                                      privilege   => 'connect');
      7    DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(acl       => 'love.xml',
      8                                         principal => 'SCOTT',
      9                                         is_grant  => true,
    10                                         privilege => 'resolve');
    11    DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL(acl  => 'love.xml',
    12                                      host => 'shenzhoufellowship.org');
    13  commit;
    14* END;
    15  /
    
    PL/SQL procedure successfully completed.
    
    SQL> conn scott/tiger
    Connected.
    SQL> ed
    Wrote file afiedt.buf
    
      1  DECLARE
      2        lv_url    VARCHAR2(500) := 'http://shenzhoufellowship.org/main2/files/old/SpecialTopics/TheLoveDare.pdf';
      3        lc_return BLOB;
      4        lhttp_url httpuritype;
      5        ---Varriables declared for writing the LOB to pdf file --
      6        l_file     UTL_FILE.FILE_TYPE;
      7        l_buffer   RAW(32767);
      8        l_amount   BINARY_INTEGER := 32767;
      9        l_pos      INTEGER := 1;
    10       l_blob     BLOB;
    11       l_blob_len INTEGER;
    12     BEGIN
    13       --create uri
    14       lhttp_url := httpuritype.createuri(lv_url);
    15       --get the PDF document
    16       lc_return := lhttp_url.getblob();
    17       -- Open the destination file.
    18       l_file := UTL_FILE.FOPEN('SAUBHIK', 'TheLoveDare.pdf', 'wb');
    19       --Get the total length of the BLOB
    20       l_blob_len := DBMS_LOB.getlength(lc_return);
    21       -- Read chunks of the BLOB and write them to the file
    22       -- until complete.
    23       WHILE l_pos < l_blob_len LOOP
    24         DBMS_LOB.READ(lc_return, l_amount, l_pos, l_buffer);
    25         UTL_FILE.put_raw(l_file, l_buffer, FALSE);
    26         l_pos := l_pos + l_amount;
    27       END LOOP;
    28       -- Close the file.
    29       UTL_FILE.FCLOSE(l_file);
    30     EXCEPTION
    31       WHEN OTHERS THEN
    32         -- Close the file if something goes wrong.
    33         IF UTL_FILE.IS_OPEN(l_file) THEN
    34           UTL_FILE.FCLOSE(l_file);
    35         END IF;
    36         RAISE;
    37*    END;
    38  /
    
    PL/SQL procedure successfully completed.
    
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@localhost ~]$ cd saubhik/
    [oracle@localhost saubhik]$ pwd
    /home/oracle/saubhik
    [oracle@localhost saubhik]$ ls -l *.pdf
    -rw-r--r-- 1 oracle oinstall 60055 Apr  6 14:03 TheLoveDare.pdf
    [oracle@localhost saubhik]$
    

    I love this pdf file. I would like to read this and mean while if you get an error then please post in its entirety and also think that it is an Oracle error or network.

  • Printer does not work on the Windows XP computer, get the error message like "an error occurred during port configuration. This operation is not supported.

    Original title: 1. printer stopped communicating with the computer. 2 port - associated configuration error?

    I have a big problem. All of a sudden my printer - AIO Photo964 said he cannot communicate with my computer. The printer works fine. I tried switching cables USB, all the trouble shooting suggestions, etc. etc. Nothing works and it makes no sense. I can't print anything. I thought it would be that I installed a Seagate external hard drive backup, then I uninstalled the program - no help. ITunes installed recently, because she had changed the printer default, changed back - no help. The USB cable is not tight in the printer (or both cables, I tried), but AFAIK it's not new (?) And when I try to configure the port, I get the error message "an error occurred during port configuration. This operation is not supported"I have no idea what it means.  Can someone help me with this? I have to return a new printer? The USB port on the printer is repairable if this is the problem? How will I know? Who would do that?

    Thanks, I'd appreciate any help.

    It is always useful to have the complete error message without paraphrase.

    It also helps to identify the version of Windows you have, including service pack.

    And it helps to give the manufacturer of the printer in addition to the model.  In your case, I guess you have a Dell printer.  I know that some Dell printers are rebadged Lexmarks, but I don't know if it's a.

    Why you try to configure the USB port?  It cannot be configured - you've discovered.  It's normal.

    It's quite strange that an iTunes installation would have had something to do with the printers.  What printer was made by default after installing iTunes?

    You say you have tried another USB cable.  Have you tried using a different USB port on the computer? Have you checked in the Device Manager (start > run > devmgmt.msc > OK) to see if there is all the warning icons in the category "controllers of Bus USB?

    I suggest you uninstall the printer software and driver completely and reinstall by following the directions in Its first Article.

    Don't skip step 4.  After step 4 and step 5, follow these steps:

    Important: If you have a Lexmark printer, skip the following

    Open a command prompt window (start > run > cmd > OK)
    type the following in the black command prompt window, and then press ENTER after each line

    net stop spooler
    dependent on the spooler of sc config = RPCSS
    net start spooler
    output

    Note that there is no space before the = and there is a space after it.

    The Windows XP driver for the Dell Photo AIO 964 printer is here--> http://www.dell.com/support/drivers/us/en/04/DriverDetails/DriverFileFormats/Product/dell-964?DriverId=R113115&FileId=2731111743&urlProductCode=False

  • Impossible to install the software to receive error message like "16-bit MS-DOS subsystem config.nt msiexec.exe file system not suitable for running MS-DOS and Microsoft Applications."

    Hello

    Original title: problem installing the software
     
    When my wife tries to install software (for example the updates of Windows or Itunes) on his Dell laptop (Windows Vista Home Premium), she gets this error developed box.
    "the 16-bit MS-DOS subsystem
    The msiexec.exe config.nt file this system is not suitable for running MS-DOS and Microsoft Applications. »
    Grateful for any ideas on how to fix this problem!

    Hello

    1. what 16-bit or software program you try to run? Should I use the CD Rom drive?

    2 - is the question also appear during the installation of Windows updates?

    3. have you made changes on the computer before this problem?

    Follow the methods and check them out below:

    Method 1: Perform a clean boot and check.

     

    To help resolve the error message, you can start Windows Vista or Windows 7 by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

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


    Please note:  After troubleshooting, be sure to start your computer in normal mode by following step 7.

    Method 2:

    Run an analysis of auditor of system files on your computer and check for the issue.

    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7

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

    Method 3: Solve problems with programs that cannot be installed or uninstalled

    http://support.Microsoft.com/mats/Program_Install_and_Uninstall

    Hope the above information is helpful.

  • In visual C++ 2010 Sudio type a name of boot file is error message like characters * / etc. can not be used when I don't use in the name of the project

    I create a new project in the projects and Solutions (C++) as Console Win32 Application. I enter a name for the file as proposed game and the project

    an error because there seems to be some included characters that are not allowed.  WHY there is not?

    I would say it is more lilkely a question for http://social.msdn.microsoft.com/Forums/en-us/vcgeneral/ programming forums

  • HP Laserjet 1010: Unable to print. error message "unsupported personality: PCL.

    Hello!

    I had my old HP Laserjet 1010 installed on my HP ProBook 650 G1 sucessfully. Yesterday interrupted with an error message like "personality unsupported PCL"

    Can help you...

    Concerning

    Raimo

    Raimo1 wrote:

    Hello!

    I had my old HP Laserjet 1010 installed on my HP ProBook 650 G1 sucessfully. Yesterday interrupted with an error message like "personality unsupported PCL"

    Can help you...

    Concerning

    Raimo

    Hello

    http://h30434.www3.HP.com/T5/LaserJet-printing/unsupported-personality-PCL-on-LaserJet-1012-printing-from/TD-p/470237

    HP will not develop a Windows 10 driver for this printer. The best option is to buy a new printer or get a laptop computer with the operating system prior to Windows 7 because this error occurred on Windows 7 computers due to inadequate software support driver for the printer. Perhaps a simple shooting turn also works as described in the link.

  • Installed updates XP and now "help" gives just the error message and important icons in the Panel do nothing, HELP!

    I just installed the updates more than 75 for XP and now I can't use 'help' - I just get the error messages like 'bad parameter '. By clicking on the icons in the Panel do nothing important examples: administrative tasks, network and remote access connections. Advanced option under Display\Settings\Advanced not display the options installed with graphics card driver/software. I can't troubleshoot without 'help' HELP! TIA!

    CADJOCK44

    Start over from scratch. See...

    Personal data backup (which none should be considered 100% reliable at this point) then format the HARD disk and do a clean install of Windows.  Please note that a repair installation (upgrade AKA on-site) won't fix this!

    HOW to do a clean install of Windows XP: see method 1 and http://michaelstevenstech.com/cleanxpinstall.html#steps in http://support.microsoft.com/kb/978307

    Once installed the clean, you will have the equivalent of a "new computer" in order to take care of everything on the next page before connecting the machine to the internetor a local network (i.e. other computers) and before using a USB or SD card that is not brand new, or has not been freshly formattedotherwise:

    4 steps to help protect your new computer before going online
         http://www.Microsoft.com/security/pypc.aspx

    Other useful references include:

    HOW to get a computer that is running Windows XP Gold (no Service Pack) fully patched (after a clean install)
    http://groups.Google.com/group/Microsoft.public.windowsupdate/MSG/3f5afa8ed33e121c

    HOW TO get a computer that is running Windows XP SP1 (a) or SP2 fully patched (after a clean install)
    http://groups.Google.com/group/Microsoft.public.WindowsXP.General/MSG/a066ae41add7dd2b

    Tip: After getting the computer fully patched, download/install KB971029 manually:http://support.microsoft.com/kb/971029

    NB: No matter what Norton or McAfee free trial which is preinstalled on the computer when you bought will be reinstalled (but invalid) when Windows is reinstalled. You MUST uninstall the trial for free and download/run the removal tool before installing updates, Windows Service Packs, or updates IE and before installing your new anti-virus application (which will require WinXP SP3 must be installed).

    Norton Removal Tool
         FTP://ftp.Symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exe

    McAfee Consumer product removal tool
         http://download.McAfee.com/Products/Licensed/cust_support_patches/MCPR.exe

    If you need help, please start a new thread in this forum:

    http://social.answers.Microsoft.com/forums/en-us/XPRepair/threads

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • error message: the request failed because VistaDB.esxwas not found

    After the addition of a keyboard and wireless mouse, I started to receive error messages like the above others include one or more systemDLL could not be loaded:ESApp.dll cannot start the application.
    It has been suggested that I have reinstall the Vista application. I don't know how to find so much application to reinstall them.  The hardware wizard continues trying to install hardware but impossible.  Another mistake mentioned Error 2343 # appears my Messanger Survay showing a Worming (!) sign.  How can I fix this mess?

    Hi jmsrjs,

    I will need some additional information to help you best.

    ·         You have Kodak Easy Share installed on your computer?

    If you have a Kodak Easy Share installed on your computer, you must uninstall and reinstall inorder to solve the problem.

    You can download the latest version of the software from the link below.

    http://www.kodak.com/eknec/PageQuerier.jhtml?PQ-path=130&PQ-locale=en_US&_requestid=50117

    Check whether the problem is resolved.

    Please post back and let us know if it helped to solve your problem.

    Kind regards

    KarthiK TP

  • 2350 all in printer error messages

    Hi I get the error messages like 0x84113ea7 and 0 x 88106290165: hw_interrupt_hwv2.c 2350 do not print unless I unplug it.  Sometimes it prints a doc, but the error messages comes immediately.  How can I fix?

    Thank you!

    Bob

    HI - try following the steps described in this document.  It should help to solve the problem.

    Hope that helps.

  • Error messages from Windows Live Movie Maker Movie

    I am trying to create a movie using the new installed Windows Live movie maker and I'm able to import fine film scenes. However, when I try to change them at times, he's very well but then on other times it displays an error message saying that Windows cannot save movie file because the movie you may be corrupted or it film ake cannot determine Ann that the file was created. It displays an error message like a triangle with an exclamation point. It will do this at random whenever I start my project and sometimes it's the same movie and other times it's a different movie. When she did this, I simply save the file and close it movie maker, then re-open the Director and then reopen the file. I record movies from a camera, sharper Image with the .avi file extension which is a supported file type, so I don't know what is the cause. Maybe I need to rename the files as the Director does not recognize it by a unique name? If anyone has answers on this it would be greatly appreciated because I really want to complete this film I have all the scenes in it of just a matter of change them.

    Hello Phoenix27,

    Since your question deals with Windows Live Movie Maker, it is best to post in the forum created for the Windows Live products.
    Click here for a link to the Windows Live Help forum. They have experts who will be able to solve the problem you are experiencing.

    I hope this helps.

    Thank you

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

  • ViewStack - Varibles error message

    I produced a school record so that they can modify their own data,
    as a single page it works fine, I've divided the pages in a ViewStack, and unless I visit both pages
    I get an error message like used on page 2 text fields are not ready.

    Is this a bug? is their a work around?

    quick example

    <? XML version = "1.0" encoding = "utf-8"? >
    "" < mx:Application xmlns:mx = ' http://www.adobe.com/2006/mxml ' layout = "absolute" height = "472" width = "750" backgroundGradientColors = "[#e6e6e6, #e6e6e6]" >
    < mx:WebService id = "checkDetails".
    destination = "checkDetails".
    useProxy = "true" >
    < name mx:operation = "GetStudent" result = "GetStudentResult (); ">
    < mx:request >
    < user_id > {user_id.text} < / user_id >
    < / mx:request >
    < / mx:operation >
    < name mx:operation = "SaveStudent" result = "SaveStudentResult (); ">
    < mx:request >
    < student >
    < StudentNumber > {checkDetails.GetStudent.lastResult.StudentNumber} < / StudentNumber >
    < user name > {checkDetails.GetStudent.lastResult.UserID} < / UserID >
    {CheckDetails.GetStudent.lastResult.StudentTitle} < StudentTitle > < / StudentTitle >
    {CheckDetails.GetStudent.lastResult.StudentForename} < StudentForename > < / StudentForename >
    {CheckDetails.GetStudent.lastResult.StudentSurname} < StudentSurname > < / StudentSurname >
    {CheckDetails.GetStudent.lastResult.StudentDOB} < StudentDOB > < / StudentDOB >
    {CheckDetails.GetStudent.lastResult.StudentGender} < StudentGender > < / StudentGender >
    {StudentMobileNumber.text} < StudentMobileNumber > < / StudentMobileNumber >
    < UniversityEmailAddress > {checkDetails.GetStudent.lastResult.UniversityEmailAddress} < / Univ ersityEmailAddress >
    < HomeAddress >
    < AddressLine1 > {HomeAddressLine1.text} < / AddressLine1 >
    < AddressLine2 > {HomeAddressLine2.text} < / AddressLine2 >
    {HomeAddressLine3.text} < AddressLine3 > < / AddressLine3 >
    {HomeAddressLine4.text} < AddressLine4 > < / AddressLine4 >
    {HomeAddressLine5.text} < AddressLine5 > < / AddressLine5 >
    {HomeAddressLine6.text} < AddressLine6 > < / AddressLine6 >
    < ZipCode > {HomeAddressPostCode.text} < / code >
    < PhoneNumber > {HomeAddressPhoneNumber.text} < / PhoneNumber >
    < / HomeAddress >
    < / student >
    < / mx:request >
    < / mx:operation >
    < / mx:WebService >

    < mx:Script >
    <! [CDATA]


    public void GetStudentResult (): void {}
    myStatus.text = "student charge details";
    }

    public void SaveStudentResult (): void {}
    myStatus.text = "student registered details ';
    }
    []] >
    < / mx:Script >



    < mx:Button "522" = x y = "444" label = "GetStudent" click = "checkDetails.GetStudent.send ()" id = "GetStudent_button" / > "
    < mx:Button "621" = x y = "444" label = "Submit Changes" id = "SaveStudent_button" click = "checkDetails.SaveStudent.send ()" / >
    < mx:TextInput = "448" x = "444" text = "303530" id = "user_id" width = "63" / >

    < XY = "0" mx:LinkBar = "0" width = "750" dataProvider = "viewstack1" >
    < / mx:LinkBar >

    < mx:ViewStack x = "10" y = "25" id = "viewstack1" width = "730" height '417' = >
    < mx:Canvas label = "Personal information" width = "100%" height = "100%" backgroundAlpha = "0,0" borderColor = "#ffffff" >
    < mx:Label = "73" x = "11" text = "first name" width = "132" textAlign = "left" / >
    < mx:TextArea = '73' x y = "30" height = "24" text = "{checkDetails.GetStudent.lastResult.StudentForename}" id = "StudentForename" editable = "false" / > "
    < mx:Label x = "10" y = "12" text = "Title" width = "48" textAlign = "left" / >
    < mx:TextArea x = "10" y = "30" height = "24" text = "{checkDetails.GetStudent.lastResult.StudentTitle}" width = "55" id = "StudentTitle" editable = "false" / > "
    < mx:Label = "241" x = "11" text = "Name" width = "132" textAlign = "left" / >
    < mx:TextArea = "241" x y = "30" height = "24" text = "{checkDetails.GetStudent.lastResult.StudentSurname}" width = "193" id = "StudentSurname" editable = "false" / > "
    < mx:Label "514" = x y = "31" text = "UserID" width = "65" textAlign = "right" id = "label0" / >
    < mx:TextArea = "587" x y = "30" height = "24" text = "{checkDetails.GetStudent.lastResult.UserID}" id = "UserID" editable = "false" width = "133" / > "
    < mx:Label x = '26"y ="167"text = 'Date of birth' width = '80' textAlign ="right"/ >
    < mx:TextArea = "114" x = "165" height = "24" text = "{checkDetails.GetStudent.lastResult.StudentDOB}" width = "119" id = "StudentDOB" editable = "false" / > "
    < mx:Label = "52" x = "137" text = "Gender" width = "54" textAlign = "right" / >
    < mx:TextArea = "114" x = "136" height = "24" text = "{checkDetails.GetStudent.lastResult.StudentGender}" width = "119" id = "StudentGender" editable = "false" / > "
    < mx:Label = "384" x = "310" text = "Number of Mobile" width = "122" textAlign = "right" id = "label8" / >
    < mx:TextArea = "309" height = "24" text = "{checkDetails.GetStudent.lastResult.StudentMobileNumber}" width = "204" x = '514' id = 'StudentMobileNumber' editable = "true" / > "
    < mx:Label = "384" x = "252" text = "E-mail from the University" width = "122" textAlign = "right" id = "label9" / >
    < mx:TextArea = "251" height = "24" text = "{checkDetails.GetStudent.lastResult.UniversityEmailAddress}" width = "204" x = "514" id = "UniversityEmailAddress" editable = "false" / > "
    < / mx:Canvas >

    < mx:Canvas label = "Personal addresses" width = "100 percent" height = "100%" >
    < mx:Button = "269" x = "216" label = "LookUp" id = "button0" / >
    < mx:Label = "31" x = "38" text = "Address" width = "67" textAlign = "right" id = "label14" / >
    < mx:Label = "31" x = "216" text = 'postal Code' width = "67" textAlign = "right" id = "label15" / >
    < mx:Label = "31" x = "248" text = 'Phone' width = "67" textAlign = "right" id = "label16" / >
    < mx:TextArea = "35" height = "24" text = "{checkDetails.GetStudent.lastResult.HomeAddress.AddressLine1}" width = "233" x = "110" id = "HomeAddressLine1" / > "
    < mx:TextArea = "65" height = "24" text = "{checkDetails.GetStudent.lastResult.HomeAddress.AddressLine2}" width = "233" x = "110" id = "HomeAddressLine2" / > "
    < mx:TextArea = "95" height = "24" text = "{checkDetails.GetStudent.lastResult.HomeAddress.AddressLine3}" width = "233" x = "110" id = "HomeAddressLine3" / > "
    < mx:TextArea = "125" height = "24" text = "{checkDetails.GetStudent.lastResult.HomeAddress.AddressLine4}" width = "233" x = "110" id = "HomeAddressLine4" / > "
    < mx:TextArea = "155" height = "24" text = "{checkDetails.GetStudent.lastResult.HomeAddress.AddressLine5}" width = "233" x = "110" id = "HomeAddressLine5" / > "
    < mx:TextArea = "185" height = "24" text = "{checkDetails.GetStudent.lastResult.HomeAddress.AddressLine6}" width = "233" x = "110" id = "HomeAddressLine6" / > "
    < mx:TextArea = "215" height = "24" text = "{checkDetails.GetStudent.lastResult.HomeAddress.PostCode}" width = "144" x = "110" id = "HomeAddressPostCode" / > "
    < mx:TextArea = "245" height = "24" text = "{checkDetails.GetStudent.lastResult.HomeAddress.PhoneNumber}" width = "233" x = "110" id = "HomeAddressPhoneNumber" / > "
    < / mx:Canvas >

    < / mx:ViewStack >
    < mx:TextArea x = "10" y = "446" height = "20" id = 'myStatus"width ="272"backgroundColor ="#e6e6e6"> < / mx:TextArea >

    < / mx:Application >

    This question should really go in a FAQ...

    The value ViewStack's CreationPolicy = "all".

  • ofa: when I launch oaf page I get the error message

    Hi This is thiliban iam new in OPS when I try to run my MainPG I get an error message like this can anuone help?

    500 internal Server Error

    java.lang.NoSuchMethodError: oracle.apps.fnd.framework.webui.OAAboutUtils.setPageInError (Ljavax/servlet/http/HttpSession ;) V

    at OAErrorPage. jspService(OAErrorPage.jsp:11)

    [SRC: / OAErrorPage.jsp]

    to com.orionserver [Oracle9iAS (9.0.3.1.0) containers for J2EE] .http. OrionHttpJspPage.service (OrionHttpJspPage.java:56)

    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)

    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)

    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

    to com.evermind [Oracle9iAS (9.0.3.1.0) containers for J2EE].server.http.ServletRequestDispatcher.invoke (ServletRequestDispatcher.java:727)

    to com.evermind [Oracle9iAS (9.0.3.1.0) containers for J2EE].server.http.ServletRequestDispatcher.include (ServletRequestDispatcher.java:119)

    to com.evermind [Oracle9iAS (9.0.3.1.0) containers for J2EE].server.http.EvermindPageContext.handlePageThrowable (EvermindPageContext.java:547)

    to com.evermind [Oracle9iAS (9.0.3.1.0) containers for J2EE].server.http.EvermindPageContext.handlePageException (EvermindPageContext.java:518)

    at runregion. jspService(runregion.jsp:143)

    [SRC: / runregion.jsp:101]

    to com.orionserver [Oracle9iAS (9.0.3.1.0) containers for J2EE] .http. OrionHttpJspPage.service (OrionHttpJspPage.java:56)

    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)

    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)

    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

    to com.evermind [Oracle9iAS (9.0.3.1.0) containers for J2EE].server.http.ServletRequestDispatcher.invoke (ServletRequestDispatcher.java:727)

    to com.evermind [Oracle9iAS (9.0.3.1.0) containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal (ServletRequestDispatcher.java:306)

    to com.evermind [Oracle9iAS (9.0.3.1.0) containers for J2EE].server.http.HttpRequestHandler.processRequest (HttpRequestHandler.java:767)

    to com.evermind [Oracle9iAS (9.0.3.1.0) containers for J2EE].server.http.HttpRequestHandler.run (HttpRequestHandler.java:259)

    to com.evermind [Oracle9iAS (9.0.3.1.0) containers for J2EE].server.http.HttpRequestHandler.run (HttpRequestHandler.java:106)

    to EDU.oswego.cs.dl.util.concurrent.PooledExecutor$ Worker.run (PooledExecutor.java:797)

    at java.lang.Thread.run(Thread.java:534)

    Hello

    That's the problem with your DBC file. Ask your DBA to provide you with the correct version of the DBC file

    Ajay

  • Display error message when a condition in the process page returns false

    Hello

    I doubt by displaying the error message in a page. In my treatment of the page, I have a process that is assosiated with

    a press the button. In the process, I have an 'if' condition and insert in a table when the "If" condition returns true. If

    It returns false that I need to display an error message like "cannot insert a value. I tried to give him in the error of process

    message, but it is not displaying when the if condition fails. Help, please


    Thank you

    TJ

    Edited by: tj2010 Oct 6, 2009 21:25

    Hello

    Have you tried

    If condition = true
    then
    insert into the table;
    on the other
    apex_application.g_print_success_message: = "your Message here";
    end if;

    Make sure that the branch on the page that is triggered after your process has the "success of process message includes" checked.

    Concerning

    Paul

  • positioning error message

    Hello

    Error messages like "Invalid Credentials to logon" page 101 are displayed by default at the top Center (I think it's region Position 7) page.
    How that could be changed to another post as bottom center? I have not found anything in the page attributes or in the model.

    Thanks for any suggestions,

    Roger

    Roger,

    Alright... you should also see something that looks like this...

    
    #BOX_BODY##REGION_POSITION_02##REGION_POSITION_03##REGION_POSITION_04##REGION_POSITION_05##REGION_POSITION_06##REGION_POSITION_07##REGION_POSITION_08#
    
    

    Decide where exactly you want to display messages in relations to the regions and place the strings in there accordingly.

Maybe you are looking for

  • When registering free video chat, I hit wrong button and you need to fix as it says im a child

    I am a longtime mozilla/firefox user and just noticed today, which you offer a free video chat, and as I was writing down, she asked my age and I mustve hit something wrong he has redirected me to a page saying, I can't register as I am a child less

  • my computer crashes when intensive video making, BCCode error code: 9 c

    Original title: BCCode error code: 9 c From what I gathered, it is a question of processor, RAM or motherboard. I didn't have the problem of crash until the rear case fan has failed. I replaced it, but I get crashes... especially when you make video

  • LaserJet 3030 - change the language from Russian to English

    I have a LaserJet 3030 and restored the Russian language.  I can't change back to English because I can't read Russian letters.  I tried to turn off the printer, but that did not work.  I used Google translate and plugged the words 'English' and 'lan

  • superior Headphone Jack does not work

    My office h8-1039 (W7 Home Premium) has a Jack headphone and microphone on the top and the back of the PC.  On the top of the page game of catch, the helmet stopped workng, the microphone still does, so I have to use the headphones for talking me thr

  • MSE not away at startup.

    I installed Microsoft Security Essentials and you want to open automatically when the computer is turned on to I am running windows 7. How can I accomplish this?