Fields of ADF will not be marked as required

Hello, I have two selectonechoice adf list fields that are unable to be verified as required to ensure that the form is sent, the fields are 'PLACE' and 'TYPE of COMMENT'...

As you can see in the image, even if the LOCATION is marked required it it never says same thing red in case of OBSERVATION

Here is my code of the jsp page

<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=UTF-8"/>
  <f:view>
    <af:document id="d1" binding="#{backingBeanScope.backing_Test.d1}">
      <af:messages binding="#{backingBeanScope.backing_Test.m1}" id="m1"/>
      <af:form id="f1" binding="#{backingBeanScope.backing_Test.f1}"
               usesUpload="true">
        <af:pageTemplate viewId="/oracle/templates/threeColumnTemplate.jspx"
                         id="pt1">
          <f:facet name="center">
            <af:panelFormLayout binding="#{backingBeanScope.backing_Test.pfl1}"
                                id="pfl1">
              <af:spacer width="10" height="10"
                         binding="#{backingBeanScope.backing_Test.s2}" id="s2"/>
              <af:inputDate value="#{bindings.When.inputValue}" label="WHEN"
                            shortDesc="#{bindings.When.hints.tooltip}"                      
                            id="it6" required="true" showRequired="true">
                            <af:convertDateTime pattern="yyyy-MM-dd'T'HH:mm:ss.SSSZ"/> </af:inputDate>
              <af:spacer width="10" height="10"
                         binding="#{backingBeanScope.backing_Test.s1}" id="s1"/>
              <af:selectOneChoice value="#{bindings.Location.inputValue}"
                                  label="LOCATION"
                                  shortDesc="What is your location?"
                                  binding="#{backingBeanScope.backing_Test.soc1}"
                                  id="soc1" showRequired="true"
                                  required="true">
                <f:selectItems value="#{bindings.Location.items}"
                               binding="#{backingBeanScope.backing_Test.si1}"
                               id="si1"/>
              </af:selectOneChoice>
              <af:spacer width="10" height="10"
                         binding="#{backingBeanScope.backing_Test.s3}" id="s3"/>
              <af:selectOneChoice value="#{bindings.Category.inputValue}"
                                  label="OBSERVATION TYPE"
                                  shortDesc="Describe the cause of your observation."
                                  binding="#{backingBeanScope.backing_Test.soc2}"
                                  id="soc2" required="true" showRequired="true">
                <f:selectItems value="#{bindings.Category.items}"
                               binding="#{backingBeanScope.backing_Test.si2}"
                               id="si2"/>
              </af:selectOneChoice>
              <af:spacer width="10" height="10"
                         binding="#{backingBeanScope.backing_Test.s4}" id="s4"/>
              <af:inputText value="#{bindings.Details.inputValue}"
                            label="YOUR OBSERVATION"
                            columns="#{bindings.Details.hints.displayWidth}"
                            maximumLength="#{bindings.Details.hints.precision}"
                            shortDesc="#{bindings.Details.hints.tooltip}"
                            binding="#{backingBeanScope.backing_Test.it3}"
                            id="it3" required="true">
                <f:validator binding="#{bindings.Details.validator}"/>
              </af:inputText>
              <af:spacer width="10" height="10"
                         binding="#{backingBeanScope.backing_Test.s5}" id="s5"/>
              <af:inputText value="#{bindings.Action.inputValue}"
                            label="ACTION TAKEN"
                            columns="#{bindings.Action.hints.displayWidth}"
                            maximumLength="#{bindings.Action.hints.precision}"
                            shortDesc="#{bindings.Action.hints.tooltip}"
                            binding="#{backingBeanScope.backing_Test.it4}"
                            id="it4" showRequired="true" required="true">
                <f:validator binding="#{bindings.Action.validator}"/>
              </af:inputText>
              <af:spacer width="10" height="10"
                         binding="#{backingBeanScope.backing_Test.s6}" id="s6"/>
              <af:inputFile label="CAPTURE"
                            binding="#{backingBeanScope.backing_Test.if1}"
                            id="if1"
                            value="#{backingBeanScope.backing_Test.file}"
                            required="false" showRequired="false"
                            valueChangeListener="#{backingBeanScope.backing_Test.uploadFileValueChangeEvent}"/>
              <af:panelLabelAndMessage label="SUBMITTED BY:"
                                       binding="#{backingBeanScope.backing_Test.plam1}"
                                       id="plam1">
                <af:outputText value="#{securityContext.userName}"
                               binding="#{backingBeanScope.backing_Test.ot1}"
                               id="ot1"/>
              </af:panelLabelAndMessage>
              <af:inputText value="#{bindings.Userid.inputValue}"
                            label="#{bindings.Userid.hints.label}"
                            required="#{bindings.Userid.hints.mandatory}"
                            columns="#{bindings.Userid.hints.displayWidth}"
                            maximumLength="#{bindings.Userid.hints.precision}"
                            shortDesc="#{bindings.Userid.hints.tooltip}"
                            binding="#{backingBeanScope.backing_Test.it1}"
                            id="it1" rendered="false">
                <f:validator binding="#{bindings.Userid.validator}"/>
              </af:inputText>
              <af:panelGridLayout binding="#{backingBeanScope.backing_Test.pgl1}"
                                  id="pgl1">
                <af:gridRow marginTop="5px" marginBottom="5px" height="auto"
                            binding="#{backingBeanScope.backing_Test.gr1}"
                            id="gr1">
                  <af:gridCell marginStart="5px" width="auto"
                               binding="#{backingBeanScope.backing_Test.gc1}"
                               id="gc1">
                    <af:commandButton
                                      text="Submit"
                                      disabled="#{!bindings.Commit.enabled}"
                                      binding="#{backingBeanScope.backing_Test.cb2}"
                                      id="cb2"
                                      action="#{backingBeanScope.backing_Test.cb2_action}"/>
                  </af:gridCell>
                  <af:gridCell marginStart="1px" width="auto"
                               binding="#{backingBeanScope.backing_Test.gc2}"
                               id="gc2">
                    <af:resetButton text="Clear All"
                                    binding="#{backingBeanScope.backing_Test.rb1}"
                                    id="rb1"/>
                  </af:gridCell>
                </af:gridRow>
              </af:panelGridLayout>
              <af:panelGridLayout binding="#{backingBeanScope.backing_Test.pgl2}"
                                  id="pgl2">
                <af:gridRow marginTop="5px" marginBottom="5px" height="auto"
                            binding="#{backingBeanScope.backing_Test.gr2}"
                            id="gr2">
                  <af:gridCell marginStart="5px" width="auto"
                               binding="#{backingBeanScope.backing_Test.gc5}"
                               id="gc5">
                    <af:goLink text="Mail"
                               binding="#{backingBeanScope.backing_Test.gl2}"
                               id="gl2"
                               destination="mailto:noharm@?subject=NOck"/>
                  </af:gridCell>
                  <af:gridCell marginStart="1px" marginEnd="5px" width="auto"
                               binding="#{backingBeanScope.backing_Test.gc6}"
                               id="gc6"/>
                </af:gridRow>
              </af:panelGridLayout>
              <f:facet name="footer">
              </f:facet>
            </af:panelFormLayout>
          </f:facet>
          <f:facet name="header"/>
          <f:facet name="end"/>
          <f:facet name="start">
            <af:group binding="#{backingBeanScope.backing_Test.g1}" id="g1">
              <af:decorativeBox binding="#{backingBeanScope.backing_Test.db1}"
                                id="db1" topHeight="180px">
                <f:facet name="center"/>
                <f:facet name="top">
                  <af:image source="/rsz_noharm.png" shortDesc="NoHarmLogo"
                            binding="#{backingBeanScope.backing_Test.i1}"
                            id="i1"/>
                </f:facet>
              </af:decorativeBox>
            </af:group>
          </f:facet>
          <f:facet name="branding"/>
          <f:facet name="copyright"/>
          <f:facet name="status"/>
        </af:pageTemplate>
      </af:form>
    </af:document>
  </f:view>
  <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_Test-->
</jsp:root>

If you use Jdev 11.1.1.7,

Uncheck the "Include"No. Selection"Item" in the tab shown in the user interface from the list of values for these attributes.

See you soon

AJ

Tags: Java

Similar Questions

  • OfficeJet Pro 8500 has more ADF will not work

    We had this machine since January 2011.  The warranty expired in January 2012.  The ADF has stopped working about a month.  I see the problem - the roller thing will not drop to feed the sheets of paper.  Does anyone else have this problem?  How to solve it?  And most of all... is this normal for a machine HP to have bad like this in less than two years?

    @highflyer3035, I see you are having a problem with the ADF on the printer. I would say later document, which will give you several step to solve the problem.

    I know that the title is not your problem, but the steps are relevant to the current situation.

    Let me know the results.

  • Windows Live family safety will not start before install - requires a reboot.

    I just downloaded Windows Live Web site and Windows Live parental controls will not load. It gives just the error message "you must restart the computer to complete the setting of family security". "." Reboots makes no difference.
    I was looking to reinstall, but I don't find it in Add/Remove programs to get rid of.
    A new download acknowledged that it was already there and won't let me install again.

    Hi rnslucas,

    Thanks for visiting the site of the community of Microsoft Windows XP. The question you have posted is related to Windows Live and would be better suited to the online community. Please visit the link below to find a community that will support what ask you

    http://social.answers.Microsoft.com/forums/en-us/category/windowslive

    Please let me know if you have any questions.

    Shawn Shawn - Support Engineer - MCP, MCDST
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • OfficeJet Pro 8500 a: Officejet Pro 8500 has more ADF will not work

    like others, I have this problem.  In fact I do not use the ADF very often and this kind of ignored her, but today, that I needed so decided to try to fix it.  I tried most of the fixes here and the first did nothing, but trying to look at this, I decided to put the paper in the ADF, then open the cover and look to see what happened.  My God, he started work.  I let go a bit and then started to lower the lid.  Heck, he stopped.  Essaye tried again, stopped again that I dropped the lid.  Did that a few times and then being qualified professionally I have the fix engineering, a slight slap on the far side of the adf, as on the back of the printer.  Now, my God, it was only half an hour, but the thing works.  Put three leaves there very well.

    If my thoughts are that some switch or sensor is loose or slightly stuck somehow, and that's the question.  Looking at what others have done, I epxect that they opened and closed the lid several times, because it a bank in the meantime or in the process, and perhaps it's her.  Probably HP guys could tell us what it is?

    Hello @billfern,

    I understand that you were familiar problems of automatic document feeder on your HP Officejet Pro 8500 has more e-All-in-One Printer and after trying to solve the problem, you have found that when you lower the scanner the paper process would stop. I'm happy to hear that you were able to solve this specific problem by giving a bit of a slap to the printer. This certainly isn't a standard troubleshooting step, but one that I saw set a number of different problems!

    In your case, I agree that there is a sensor or roller conflict occurring which is at the origin of the book of power question. This may be due to a defect of the real hardware or a programming problem. In all areas of document feeder, it is not so simple. There are many variables that can affect the document feeder Assembly. Some problems occur after crossing the media statement incorrect Assembly or an overload of the Assembly. Other problems occur if a part in the tray is physically broken. And some points can be caused by a programming problem. However, in all cases, if the charger is faulty a replacement of the entire unit would be necessary that the tray is not a replaceable part.

    It is never a bad idea to update the programming on your machine. Even if your specific Officejet works at the present time, I would recommend sending the last update of the Firmware to it. You can download and run the update of the Firmware by clicking on here.

    Thank you for joining the Forums of HP Support!

  • [JDev12.1.2, ADF] My request of ADF will not work on Microsoft Internet Explorer 11

    Hallo,

    Today, I discovered that when I call him my ADF Essentials application (deployed on GlassFish 3.1.2) from a browser IE11 a message telling me that the browser is not supported.

    I read that there is a patch that should apply to the IDE. Could you kindly give me the link where I can download it?

    It seems that the applications developed in JDev 12.1.3 do not have this problem. The fast lane for me might migrate my application to JDev 12.1.3?

    Thank you

    Federico

    You can not. You must purchase a support contract to obtain the fix.

    Only way to make your application work with IE11 would be to use Jdev 12.1.3 which has the "patch" already included.

    Timo

  • Paintings of the ADF will not refresh

    Hello

    I am a beginner of the ADF and I use JDev 11.1.2.2.0.
    It's my "set up." I got a page fragment (jsff) that has 3 legs, on the first 2 there are two 2 the two tables and one exists on the 3rd.
    Every table has an additional column where there is a commandbutton control.
    When you press the button, a record is deleted in the table this table DB.

    What I've tried so far:
    -Partial trigger for the button on the table
    -Partial target in my grain of support
    -Refresh my entire page using:
              FacesContext fc = FacesContext.getCurrentInstance();
              String refreshpage = fc.getViewRoot().getViewId();
              ViewHandler ViewH =
              fc.getApplication().getViewHandler();
              UIViewRoot UIV = ViewH.createView(fc,refreshpage);
              UIV.setViewId(refreshpage);
              fc.setViewRoot(UIV);
    But not a single trick works.
    When I run my new page (Undeploying and deploy again), I deleted the records disappeared.

    Any suggestions?

    get the handle to the table iterator. .to leave who get the ViewObject then use executeQuery().

    DCIteratorBinding binding = ADFUtils.findIterator("ViewIterator");
    ViewObject vo = binding.getViewObject(); // you can as well execute the query for the iterator also - binding.executeQuery();
    vo.exeuteQuery(); 
    
  • Office jet pro 8500 a: copy using the ADF will not work.

    I place the document in the top loader, it seems to be recognized by the machine, when I press the copy, it makes a funny noise but the document doen't go through the driver and the machine ask me to reload the document. A copy is fate. I checked if any blocking or jamming of paper but it's all clear.

    Been through the different troubleshooting steps, but nothing helped.

    Thank you very much

    Hello FROGYBEAR and welcome to the Forums of HP, I hope you enjoy your experience!

    I see from your post that you are experiencing supply problems.  I would like to help with that!

    I recommend you to perform a power reset. Unplug the power cord from the printer and the power outlet, then wait 60 seconds. After 60 seconds, plug back in the printer. Make sure that you connect the printer directly to a wall outlet. Make sure to bypass any surge protector or power bar.

    I would also suggest using this document on When you use the ADF, one "original jam: clear jam and press OK' Message displays on the all-in-one."  I understand the questions you see are a little different, but the steps should help solve that.

    Good luck and please let me know the results of your troubleshooting operations. Thanks for posting on the HP Forums!

  • Field batch script will not map network drives

    I have a user that the workstation has begun refusing map network drives.  We are on a server 2 k 3 domain and use batch files to map network drives.  The user computer is Windows 7.  When the user logs on, the command prompt appears with the following message is displayed:

    '\\maj0131\c$ '.

    CMD. EXE was launched with the path under the current directory.

    UNC paths are not supported.  Default in the Windows directory.

    67 system error has occurred.

    The network name cannot be found.

    maj0131 is the name of the user's computer.  I can't access the user account network shares if I manually type the address of share in the address bar of Windows Explorer.  Also, if I run the same exact script locally, it works perfectly.  Help, please?

    Hello

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums.

    TechNet Forum
    http://social.technet.Microsoft.com/forums/Windows/en-us/home?filter=AllTypes&sort=lastpostdesc&brandIgnore=true

    Hope this information is useful.

  • Different applications of the ADF will not work in the same browser window

    Hello
    When I recorded with an application and then open another browser window and I just record in the second request. Back to first and take any action and it shows error, as if my session has expired.
    I put a ViewHandler method sobreescibe restoreView (FacesContext FacesContext, String viewId) as follows:

    UIViewRoot root = null;
    root = parent.restoreView (FacesContext, viewId);
    If (root == null) {}
    root = createView (FacesContext, viewId);
    }
    Returns the root;

    But this solution is temporary, because I need to create a view of all the data you had in the PageFlow, for example, the results of a search.

    Anyone know if this is a bug in the adf, or have I missed some settings?

    The versions that I work with are:

    JDeveloper: 11.1.1.3.0
    WebLogic Server: 10.3.3.0
    ADF:
    Oracle-Version: 11.1.1.3.37.56.60
    Oracle-Label: JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660
    Oracle-Builder: iibuild on asbld15 Linux

    Hello

    I had a similar problem. I solved this way:
    -create the weblogic.xml (deployment descriptor Weblogic--> located in JDeveloper when you tap new "Général Deployment Descriptor") for your ViewController project.
    -set the cookie path to a unique name (for both apps)

    example:

    
    
      
        /myapp
      
    
    

    and the demand for /myOtherApp ;)

    Martin

  • My Vista laptop will not work because it requires a password

    now my laptop dosent work at all, the only thing that appears is the password?

    * original title - annyone never look at the hard drive? *

    Hello

    Malware is perhaps the problerm:

    Download update and scan with the free version of malwarebytes anti-malware

    http://www.Malwarebytes.org/products/malwarebytes_free

    You can also download and run rkill to stop the process of problem before you download and scan with malwarebytes

    http://www.bleepingcomputer.com/download/anti-virus/rkill

    make it work above in safe mode with networking

    Windows Vista

    Using the F8 method:

    1. Restart your computer.
    2. When the computer starts, you will see your computer hardware are listed. When you see this information begins to tap theF8 key repeatedly until you are presented with theBoot Options Advanced Windows Vista.
    3. Select the Safe Mode with networking with the arrow keys.
    4. Then press enter on your keyboard to start mode without failure of Vista.
    5. To start Windows, you'll be a typical logon screen. Connect to your computer and Vista goes into safe mode.
    6. Do whatever tasks you need and when you are done, reboot to return to normal mode.

    __________________________________________________________________

    It is available on you microsoft information help on problems with passwords

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

    If you are unable to connect to Windows 7 or Windows Vista, you can use the Windows Vista System Restore feature, or the Windows 7 system restore feature.

    You may be unable to connect to Windows Vista or Windows 7 in the following scenarios:

    • Scenario 1: You recently set a new password for the protected administrator account. However, you don't remember the password.
    • Scenario 2: You type the correct password. However, Windows Vista or Windows 7 does not accept the password because the system is damaged.
    • Scenario 3: You delete a protected administrator account. Now, you cannot connect to another administrator account.
    • Scenario 4: You change an administrator account protected with a standard user account. Now, you cannot connect to another administrator account.

    ________________________________________________________

    except that we cannot help you

    read this microsoft's policy NOT to provide assistance to crack passwords when they are lost or forgotten:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-security/keeping-passwords-secure-Microsoft-policy-on/a5839e41-b80e-48c9-9d46-414bc8a8d9d4

  • Windows Update will not install after reboot required.

    Update of security for Microsoft Visual C++ 2005 Service Pack 1 (KB2538242).

    I'm running Windows 7 x 64.

    I have a Windows update that requires the closing down to install.   This is not, and after reboot, I have a slower computer.

    At this point, even removing the offending program would be useful.

    Thank you for your expertise.

    Hello

    Try the methods provided below and see if they help to resolve the issue.

    Method 1:

    In the case where you are not able to install specific updates then, try the troubleshooting provided in the link below steps to fix the problem.

    You cannot install some programs or updates

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

    Method 2:

    You can also try to reset the Windows Update components and check if that helps.

    Click on the link provided below for more information about resetting Windows Update components.

    How to reset the Windows Update components?

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

    Method 3:

    Start the computer in a clean boot state and then try to download the updates manually.

    Put your boot system helps determine if third-party applications or startup items are causing the problem. If so, you need to maybe contact the manufacturer of the program for updates or uninstall and reinstall the program.

    See the following article in the Microsoft KB for more information on how to solve a problem by performing a clean boot in Windows Vista or Windows 7:

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

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

    Note:

    After troubleshooting, be sure to set the computer to start as usual as mentioned in step 7 in the above article.

    Download the updates manually from the link provided below.

    MFC Package security update Microsoft Visual C++ 2008 Service Pack 1

    http://www.Microsoft.com/download/en/details.aspx?displaylang=en&ID=26368

    MFC Package security update Microsoft Visual C++ 2005 Service Pack 1

    http://www.Microsoft.com/download/en/details.aspx?ID=26347

    I hope this helps.

  • Windows 7 will not be updated without requiring a download/install of Windows 10, I don't want to.

    Whenever I try to update my Windows 7, Windows Update module only provides a button that will download/install Windows 10.  Why?

    You must remove Windows 10 of the queue by hiding the upgrade or remove the upgrade.

    Once hidden, you should be able to update Windows normally - but he might come back to haunt you again.

    Easy way:

    http://blog.ultimateoutsider.com/2015/08/using-GWX-stopper-to-permanently-remove.html 
    It is a free tool that can remove and disable notification area icon "get Windows 10' on Windows 7 and Windows 8. The latest versions can also disable the behavior "upgrade to Windows 10' in the Windows Update control panel.

  • HP OfficeJet 8500 Wireless all-in-One ADF does not work

    The ADF on my all-in-One of 8500 Wireless printer has stopped working.  CB023A product number.  I went through all the troubleshooting steps and I reset the printer and the ADF will not feed.  It was working fine earlier, but that are becoming more and more spiratic and now don't feed pages in all.  All CAD looks like it is in good condition.

    There is a document with measures helping address ADF no power problem. This document can be found here.

    Also, be sure to perform a hard reset, although you mentioned try a reset, if you have not already:
    * Unplug the printer while the unit is running
    Disconnect the other end of the power cord from the wall jack directly
    * Wait 30 seconds
    * Plug the rear unit to

    For example, if the problem persists, I would then perform a partial reset:
    * Partial reset for this printer is the same as the top of the page group of printers in the document located here.

    Do you mean the turning rollers as the printer attempts to feed paper through the ADF?

  • 7410 ADF, do not feed paper

    7410 ADF will not feed paper when copying or facsimile.  Error message says "Reload documents and then restart of work".  Rollers and sensor have been cleaned and the ADF is free of debris.  The upper roller in the ADF continues above the test or tests and does not lower to pull the paper into the printer.  I need to replace the ADF?

    Hello

    I understand that you have an Officejet 7410 who straightens not paper in the ADF as long. I'm sorry to hear what is happening, but I will do my best to help you.

    There are no replaceable parts in general in the ADF, but we sure to check the web page HP PartSurfer .

    Looks like you have tried most of the steps within this ADF (ADF) does not Pick Up paper , but I will include it so you can check yourself.

    Since it is the roller itself that is not declining, the printer may require a reset. Please read this privacy statement for HP: http://bit.ly/pCUQT7 and continue to check your Inbox for a partial reset steps.

    Hope this helps, have a nice day!

  • USB MTP device drivers will not properly install for Samsung Galaxy S3 - Windows will not synchronize Galaxy S3 for computer

    Windows will not synchronize Galaxy S3 synchronizes a mobile computer.  When I attach USB cable the computer flashes added new hardware, but when you click the icon it goes in loops.  I've uninstalled and reinstalled the drivers in Kies and always the same problem.  All other cell phones synced to computer, including the Samsung Galaxy S3 but my iPhone no matter what I do.  When I open Kies and connect the USB cable there is no reconition of the cell phone.  I've seen a Code 31 error appear in good devices.
    Add questionnaires of the Add Hardware Wizard...

    SAMSUNG Mobile MTP Device (a yellow excamation sign)
                 
    This device does not work properly because Windows cannot load the drivers required for this device. (Code 31)

    SAMSUNG Android ADB Interface

    This device does not work correctly

    SAMSUNG Mobile USB Modem

    This device does not work correctly.

    SAMSUNG Mobile USB Composite Device DeviceThis works correctly.

    This device does not work correctly.

    It is all the information I can give at the moment.  I forgot to mention I am running Windows XP I hope that helps also.  With everything says I don't understand why will not load the drivers required for this device.  For any help or suggestion will be greatly appreciated.  Thank you all

    Hello

    -What is the driver version you are using?

    The latest version is ver.v1.4.6.0 out June 19, 2012.

    I recommend you to please update the USB drivers on your computer and check if it helps.

    How to manage devices in Windows XP
    http://support.Microsoft.com/kb/283658

    If this does not help, I would recommend you to please contact Samsung support for assistance.
    http://www.Samsung.com/us/support/

    There is a community forum for Samsung where you can ask questions.
    http://www.Samsung.com/us/support/owners/product/Sch-I535MBCVZW

    Hope this information helps.

Maybe you are looking for

  • Battery drains very quickly despite the non use of bike G

    Hi, I am facing problem of battery drain in my motorcycle G. Even after recharged as it gets start very fast drainage even after 5-6 minutes it gets drained at 97 percent, despite the no use of motorcycle G.And also I don't keep applications running

  • My ethernet port is not working and I need another way to connect to my desktop to the modem

    My ethernet port was released at some point on my Compaq Presario and my old modem, I connected to the internet via a usb port. However, I had to replace the modem and now there is no usb port. I'm going to replace my router anyway, but I don't know

  • How to combine 2 photos 1 photography

    How to combine 2 photography int photographs 1 I want to sell stamps on e - bay. How to buy both sides of the stamp in an image

  • Windows Mail put in place errors

    Socket error 10060 error code ox8ooCCCE0 I set up windows mail today. I followed the instructions and I can receive but not send email. I think that ports are incoming and outgoing are false. Why can I not find all the answers as what what are the po

  • HP Probook s 4720: Windows 8.1 upgrade

    My Hp Probook s 4720, who was originally windows 7 built has been updated to 8.1 but after a few days, that the laptop does not start easily. And when it starts it may start to 8.1 windows interface and the gel. On other occasions, it displays a BSOD