Problem using buttons to switch sets

I just want to do the simple thing of using the set buttons to switch up and down between sets but its proving infuriating. Lets say i have 4 sets….and i want to just cycle up and down them….i assign the set up button to previous set and set down button to next set…..but it doesn't work…or sometimes just jumps between set one and set four ignoring the sets in-between. Anyone know what the deal is?

Think I've figured it out. I had 4 sets with no patches (don't need to switch patches)…..when i added a patch to each set it would switch between them using the buttons.

Similar Messages

  • Is it possible to use booleans to build a VI that uses buttons to switch between screens (3 only) while the other screens disappear?

    As a beginner, I need help figuring out how to build a simply VI that uses boolean logic to switch between three different screens. I need a "Home" screen, the next screen which has a button to go back "Home" and a third screen which has two buttons to go "Home" and "Previous Screen". Can someone help me with a simple block diagram?

    Hi,
    Or put the data in three tab controls. The tabs itself are hidden. The
    program switches between the tab sheet if one of the buttons is pressed.
    The buttons are best not copied, e.g. the same buttons are used in every tab
    sheet (buttons hover above the tab, a black shadow will apear). If the first
    sheet is shown, button 2 and 3 are hidden, sheet two: only button 3 is
    hidden, sheet three no button is hidden.
    Showing the tabs allows the user to choose the views directlly. The button
    logic is not needed anymore. But you'll have to live with a simple tab
    sheet, instead of a fancy button system!
    Regards,
    Wiebe.
    "Jason R" wrote in message
    news:[email protected]...
    > Another solution if you want to avoid property-node hell...
    >
    > Divide your screen into 1/4ths. That is, make your FP 4x larger than
    > your desktop.
    >
    > Place screen 1 on the upper left quadrant.
    > Place screen 2 on the upper right quadrant.
    > Place screen 3 on the lower left quadrant.
    > Screen 4 (lower right quadrant) is unused.
    >
    > Disable the ability to scroll at run time.
    >
    > As the user clicks buttons, use the properties of this vi to move what
    > the user can see on the front panel.
    >
    > Cheating? yep. Easier? yep.
    >
    > Hope this helps! =)
    >
    > btw - be sure not to update the FP controls when they are not visible,
    > or this will eat processor cycles.
    >
    > Sincerely,
    > Jason G Richmond
    > Project Engineer II and LVAAD Instructor
    > VI Engineering
    > [email protected] (domain should be vieng.com (no A's))
    >
    >
    > missileman wrote:
    > > Is it possible to use booleans to build a VI that uses buttons to
    > > switch between screens (3 only) while the other screens disappear?
    > >
    > > As a beginner, I need help figuring out how to build a simply VI that
    > > uses boolean logic to switch between three different screens. I need a
    > > "Home" screen, the next screen which has a button to go back "Home"
    > > and a third screen which has two buttons to go "Home" and "Previous
    > > Screen". Can someone help me with a simple block diagram?
    >
    >

  • Problem using the FederatedSearch / Result set empty

    Hello,<br>
    <br>
    I've the following problem using the FederatedSearch:<br>
    In my KM-Folder I've two documents.<br>
    I created a simple search AbstractPortalComponent to search in the special KM-Folder.<br>
    If the query is "*" I will get the right number of documents.<br>
    But If I will access them the iterator is empty...<br>
    Please see the code below:<br>
    <br>
    Best regards<br>
    Klaus<br>
    <br>
    <br>
    IIndexService indexService = (IIndexService) ResourceFactory.getInstance().getServiceFactory().getService(IServiceTypesConst.INDEX_SERVICE);<br>
    <br>
    SearchQueryListBuilder sqb = new SearchQueryListBuilder();<br>
    <br>
    sqb.setSearchTerm(query);<br>
    IQueryEntryList qel = sqb.buildSearchQueryList();<br>
    RidList ridList = new RidList(); <br>
    ridList.add(RID.getRID(OR_KM_ROOT_PATH + "/" + OR_KM_CURRENT_PATH));<br>
    ridList.add(RID.getRID(OR_KM_ROOT_PATH + "/" + OR_KM_ARCHIVE_PATH));<br>
    IResourceContext resourceContext = new ResourceContext(user);<br>
    IFederatedSearch federatedSearch = (IFederatedSearch) indexService.getObjectInstance(IWcmIndexConst.FEDERATED_SEARCH_INSTANCE);<br>
    IFederatedSearch search = (IFederatedSearch) indexService.getObjectInstance(IWcmIndexConst.FEDERATED_SEARCH_INSTANCE);<br>
    ISearchSession session = federatedSearch.searchWithSession(qel, ridList, resourceContext, null, null);<br>
    response.write("-"+session.getTotalNumberResultKeys()); ### writes 2-ok-<br>
    response.write("- "+session.getNumberResultKeys()); ### writes 2-ok-<br>
    ISearchResultList sresults = session.getSearchResults(1,session.getTotalNumberResultKeys());<br>
                   <br>
    ISearchResultListIterator iter = sresults.listIterator();<br>
    response.write("> "iter.hasNext()"<br>");          ### writes "false"!???
    <br>               
    while (iter.hasNext())<br>
    {<br>
    ...<br>
    }<br>

    The plan is to be running with more than just two sites (though at the moment I am testing with only two).
    What happens is a client comes on-line and requests a list of sites from a router. It then picks one of the sites from the list and adds that as a replication site in the repmgr.
    It then goes about opening up the database and doing some other bookeeping. Finally we start the replication manager and once the NEWMASTER event is recieved a sync is done.
    So while this DELAYCLIENT/rep_sync is a bit overkill for the two-site test I am doing now, the design I am working towards will be a multi-site setup.

  • Problems using window.close() and setting fields

    Hi,
    I have two problems:
    First one is:
    I created a simple JSP with 'Save' and 'Exit' Buttons. In the Exit button on click event I invoked a function closeWindow, which calls teh window.close(). But on clicking Exit, the window does not close. Can anyone please tell me why.
    Second one is:
    The JSP also needs to get loaded with some values in the Textfields. Theses values are extracted from a text field using a Java class. I am able to see that these values are extracted from the text file and are loaded into Java vars, but when I am trying to set this value into a text field, it is NOT getting set.
    (filePathDetails is the instance of the class that extracts the text values)
    The entire code is posted below:
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo(); %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
        <SCRIPT type="text/javascript">
         function setPaths(){
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1 %>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2 %>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath %>;
                   textLogPath.value = <%=filePathDetails.logFilePath %>;
         function closeWindow(){
              window.closeWindow();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0" onload="setPaths()">
         <FORM name="pathDetails" method="get" action="DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE border="0" cellspacing="" height="60" width="450"
                                                        style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <P align="center">
              <INPUT type="submit" name="buttonSave" value="Save">
              <INPUT type="button" name="buttonExit" value=" Exit " onclick="closeWindow()">
              <BR>
           </P>
           </FORM>
    </body>
    </html>Please help me.
    Thanks in advance.

    Try the following..
    For problem 1:
    Use window.close() instead of window.closeWindow().
    For the second problem
    don't call the function setPaths() at onload. Rather
    call the function after the page is loaded. You can
    try like this.
    If it doesn't work then check whether the browser is
    giving any JavaScript error message.
    <SCRIPT type="text/javascript">
    setPaths() ;
         function setPaths(){
         alert(document.pathDetails.element[0].value);
    document.pathDetails.element[0].value =
    = <%=filePathDetails.localDirPath1 %>;
              alert(document.pathDetails.element[0].value);
              with(document.pathDetails){
    textAncPath1.value =
    e = <%=filePathDetails.localDirPath1 %>;
    textAncPath2.value =
    e = <%=filePathDetails.localDirPath2 %>;
    textArchivePath.value =
    e = <%=filePathDetails.archiveDirPath %>;
    textLogPath.value = <%=filePathDetails.logFilePath
    ath %>;
         function closeWindow(){
              window.closeWindow();
    </SCRIPT>Hi,
    Actually I did try window.close(), but I still am not able to close the current window.
    And as for the problem of setting up the field values, sorry the given solution doesnt seem to work. :-(..
    I have pasted the entire code, I dont know where teh flaw is. Please review the same and let me know.
    Your help is very much appreciated.
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo();%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
         <SCRIPT type="text/javascript">
         function setPaths(){
              document.pathDetails.textAncPath1.value = "Anything";
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1%>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2%>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath%>;
                   textLogPath.value = <%=filePathDetails.logFilePath%>;
         function exitWindow(){
              window.close();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0">
         <FORM name="pathDetails" method="get" action="/FTPSchedulerApp/ftpScheduler/DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE name="tempTable" border="0" cellspacing="" height="60" width="450" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <div align="center">
              <INPUT type="submit" name="buttonSave" value="Save"/>
              <input type="reset" name="buttonReset" value="Reset" onclick="setPaths()"/>
              <button name="buttonExit" onclick="exitWindow()"> Exit </button>
              <BR>
           </div>
           </FORM>
    </body>
    </html>

  • Problems using button to add an amount to another amount

    I'm trying to add an amount (field A) to another amount (field B) and keep the total in field B. I have a submit button that runs a process that has the following source:
    DECLARE
    BEGIN
    :P5_COSTO_ABOGADO := NVL(TO_NUMBER(:P5_COSTO_ABOGADO, 'FML999G999G999G999G990D00'), 0) + NVL(TO_NUMBER(:P5_COSTO_ABOG, 'FML999G999G999G999G990D00'), 0) ;
    END;
    And the process point is On Submit - Before Computations and Validations.
    The "When Button pressed" is the one I design for it. SUBMIT (Compute).
    Is not working. What is wrong with it?
    This is the debug.
    0.10: A C C E P T: Request="SUBMIT"
    0.11: Metadata: Fetch application definition and shortcuts
    0.11: NLS: wwv_flow.g_flow_language_derived_from=FLOW_PRIMARY_LANGUAGE: wwv_flow.g_browser_language=en-us
    0.11: alter session set nls_language="AMERICAN"
    0.11: alter session set nls_territory="AMERICA"
    0.11: NLS: CSV charset=WE8MSWIN1252
    0.11: ...NLS: Set Decimal separator="."
    0.11: ...NLS: Set NLS Group separator=","
    0.11: ...NLS: Set date format="DD-MON-RR"
    0.11: ...Setting session time_zone to -06:00
    0.12: Fetch session state from database
    0.12: ...Check session 2727706520181913 owner
    0.12: ...Metadata: Fetch Page, Computation, Process, and Branch
    0.12: Session: Fetch session header information
    0.12: ...Metadata: Fetch page attributes for application 109, page 5
    0.12: ...Validate item page affinity.
    0.13: ...Validate hidden_protected items.
    0.13: ...Check authorization security schemes
    0.13: Session State: Save form items and p_arg_values
    0.14: ...Session State: Save Item "P5_NOMBRE_RECLAMANTE" newValue="JACQUELINE RAMOS" "escape_on_input="N"
    0.14: ...Session State: Save Item "P5_NUMERO_RECLAMANTE" newValue="123456" "escape_on_input="N"
    0.14: ...Session State: Save Item "P5_NOMBRE_ACCIDENTADO" newValue="HAROLD RAMOS" "escape_on_input="N"
    0.14: ...Session State: Save Item "P5_DIR_POSTAL_OCURRENCIA" newValue="AVE CAMPO RICO" "escape_on_input="N"
    0.14: ...Session State: Save Item "P5_PUEBLO_POSTAL_OCURR" newValue="CAROLINA" "escape_on_input="N"
    0.14: ...Session State: Save Item "P5_ZIP_CODE_OCURR" newValue="" "escape_on_input="N"
    0.14: ...Session State: Save Item "P5_ABOGADO_RECLAMANTE" newValue="JACQUELINE RAMOS" "escape_on_input="N"
    0.14: ...Session State: Save Item "P5_DIR_ABOGADO_RECLAMANTE" newValue="CALLE BOTELLA ESQ TAPON ULTIMO PISO SIN ESCALON" "escape_on_input="N"
    0.14: ...Session State: Save Item "P5_TEL_ABOGADO_RECLAMANTE" newValue="" "escape_on_input="N"
    0.14: ...Session State: Save Item "P5_ABOGADO_AEE" newValue="ANTONIO SILVA" "escape_on_input=""
    0.14: ...Session State: Save Item "P5_DIR_ABOGADO_AEE" newValue="CALLE COLIBRI" "escape_on_input="N"
    0.14: ...Session State: Save Item "P5_TEL_ABOGADO_AEE" newValue="" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_QTY_RECLAMADA" newValue="10000000" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_QTY_PAGADA" newValue="" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_NUM_CHK_PAGADA" newValue="" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_FECHA_CHK_PAGADA" newValue="" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_TIPO_2" newValue="" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_COSTO_ABOG" newValue="500" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_COSTO_ABOGADO" newValue="$1,000.00" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_COSTO_PERITO" newValue="" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_COSTOS_PERITOS" newValue="$500.00" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_COSTO_TRANSCRIP" newValue="" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_COSTOS_TRANSCRIPCION" newValue="$1,000.00" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_COSTO_TAQ" newValue="" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_COSTOS_TAQUIGRAFOS" newValue="$1,000.00" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_COSTO_OTRO" newValue="" "escape_on_input="N"
    0.15: ...Session State: Save Item "P5_COSTOS_OTROS" newValue="" "escape_on_input="N"
    0.16: ...Session State: Save Item "P5_X" newValue="" "escape_on_input="N"
    0.16: ...Session State: Save Item "P5_NUM_CASO_LEGAL" newValue="N/A" "escape_on_input="N"
    0.16: ...Session State: Save Item "P5_NUM_SEGUIMIENTO" newValue="N/A " "escape_on_input="N"
    0.17: ...Session State: Save Item "P5_TIPO_1" newValue="Reclamación" "escape_on_input="N"
    0.17: ...Session State: Save Item "P5_FECHA_OCURRENCIA" newValue="07/07/2009" "escape_on_input="N"
    0.17: ...Session State: Save Item "P5_FECHA_RECLAMACION" newValue="07/14/2009" "escape_on_input="N"
    0.17: ...Session State: Save Item "P5_TIPO_3" newValue="vs -> AEE" "escape_on_input="N"
    0.17: ...Session State: Save Item "P5_DIR_OCURRENCIA" newValue="FJFJGJGJG" "escape_on_input="N"
    0.17: ...Session State: Save Item "P5_CONCEPTO" newValue="ACCIDENTE DE AUTO" "escape_on_input=""
    0.17: ...Session State: Save Item "P5_PUEBLO_OCURRENCIA" newValue="ARECIBO" "escape_on_input="N"
    0.17: ...Session State: Save Item "P5_DIRECTORADO" newValue="JURÍDICA" "escape_on_input=""
    0.17: ...Session State: Save Item "P5_TRIBUNAL" newValue="Estatal" "escape_on_input="N"
    0.17: ...Session State: Save Item "P5_JUEZ" newValue="SOTOMAYOR" "escape_on_input="N"
    0.17: ...Session State: Save Item "P5_INVESTIGADOR" newValue="FRANKLIN DE LEÓN" "escape_on_input=""
    0.17: ...Session State: Save Item "P5_SALA" newValue="CAROLINA" "escape_on_input="N"
    0.17: ...Session State: Save Item "P5_DESCRIPCION" newValue="ESTO ES UNA PRUEBA" "escape_on_input="N"
    0.17: ...Session State: Save Item "P5_STATUS" newValue="Activo" "escape_on_input=""
    0.18: ...Session State: Save Item "P5_CERRADO_POR" newValue="GJGJGJG" "escape_on_input="N"
    0.18: ...Session State: Save Item "P5_REFERIDO_AUDITORIA" newValue="" "escape_on_input="N"
    0.18: Processing point: ON_SUBMIT_BEFORE_COMPUTATION
    0.18: ...Process "ADD_COSTO_ABOG": PLSQL (ON_SUBMIT_BEFORE_COMPUTATION) DECLARE BEGIN :P5_COSTO_ABOGADO := NVL(TO_NUMBER(:P5_COSTO_ABOGADO, 'FML999G999G999G999G990D00'), 0) + NVL(TO_NUMBER(:P5_COSTO_ABOG, 'FML999G999G999G999G990D00'), 0) ; END;
    0.19: Encountered unhandled exception in process type PLSQL
    0.19: Show ERROR page...
    0.19: Performing rollback...
    REGISTRO Y SEGUIMIENTO DE LAS DEMANDAS Y RECLAMACIONES
    DIRECTORADO DE ASUNTOS JURÍDICOS
    División de Litigación
    (AMALDONADO8580)
    ORA-06502: PL/SQL: numeric or value error
    Error
    OK

    I modified the reset process and conditioned it to "when CANCEL button is pressed". See the debug.
    0.00: A C C E P T: Request="SUBMIT"
    0.00: Metadata: Fetch application definition and shortcuts
    0.00: NLS: wwv_flow.g_flow_language_derived_from=FLOW_PRIMARY_LANGUAGE: wwv_flow.g_browser_language=en-us
    0.00: alter session set nls_language="AMERICAN"
    0.00: alter session set nls_territory="AMERICA"
    0.00: NLS: CSV charset=WE8MSWIN1252
    0.00: ...NLS: Set Decimal separator="."
    0.00: ...NLS: Set NLS Group separator=","
    0.00: ...NLS: Set date format="DD-MON-RR"
    0.00: ...Setting session time_zone to -06:00
    0.00: Fetch session state from database
    0.01: ...Check session 2781321738472298 owner
    0.01: ...Metadata: Fetch Page, Computation, Process, and Branch
    0.01: Session: Fetch session header information
    0.01: ...Metadata: Fetch page attributes for application 109, page 5
    0.01: ...Validate item page affinity.
    0.02: ...Validate hidden_protected items.
    0.02: ...Check authorization security schemes
    0.02: Session State: Save form items and p_arg_values
    0.02: ...Session State: Save "P5_NOMBRE_RECLAMANTE" - saving same value: "JACQUELINE RAMOS"
    0.02: ...Session State: Save "P5_NUMERO_RECLAMANTE" - saving same value: "123456"
    0.02: ...Session State: Save "P5_NOMBRE_ACCIDENTADO" - saving same value: "HAROLD RAMOS"
    0.02: ...Session State: Save "P5_DIR_POSTAL_OCURRENCIA" - saving same value: "AVE CAMPO RICO"
    0.02: ...Session State: Save "P5_PUEBLO_POSTAL_OCURR" - saving same value: "CAROLINA"
    0.02: ...Session State: Save "P5_ZIP_CODE_OCURR" - saving same value: ""
    0.02: ...Session State: Save "P5_ABOGADO_RECLAMANTE" - saving same value: "JACQUELINE RAMOS"
    0.02: ...Session State: Save "P5_DIR_ABOGADO_RECLAMANTE" - saving same value: "CALLE BOTELLA ESQ TAPON ULTIMO PISO SIN ESCALON"
    0.02: ...Session State: Save "P5_TEL_ABOGADO_RECLAMANTE" - saving same value: ""
    0.02: ...Session State: Save "P5_ABOGADO_AEE" - saving same value: "ANTONIO SILVA"
    0.02: ...Session State: Save "P5_DIR_ABOGADO_AEE" - saving same value: "CALLE COLIBRI"
    0.02: ...Session State: Save "P5_TEL_ABOGADO_AEE" - saving same value: ""
    0.02: ...Session State: Save "P5_QTY_RECLAMADA" - saving same value: "10000000"
    0.02: ...Session State: Save "P5_QTY_PAGADA" - saving same value: ""
    0.03: ...Session State: Save "P5_NUM_CHK_PAGADA" - saving same value: ""
    0.03: ...Session State: Save "P5_FECHA_CHK_PAGADA" - saving same value: ""
    0.03: ...Session State: Save "P5_TIPO_2" - saving same value: ""
    0.03: ...Session State: Save "P5_COSTO_ABOG" - saving same value: "500"
    0.03: ...Session State: Saved Item "P5_COSTO_ABOGADO" New Value="$1,000.00"
    0.03: ...Session State: Save "P5_COSTO_PERITO" - saving same value: ""
    0.03: ...Session State: Save "P5_COSTOS_PERITOS" - saving same value: "$500.00"
    0.03: ...Session State: Save "P5_COSTO_TRANSCRIP" - saving same value: ""
    0.03: ...Session State: Save "P5_COSTOS_TRANSCRIPCION" - saving same value: "$1,000.00"
    0.03: ...Session State: Save "P5_COSTO_TAQ" - saving same value: ""
    0.03: ...Session State: Save "P5_COSTOS_TAQUIGRAFOS" - saving same value: "$1,000.00"
    0.03: ...Session State: Save "P5_COSTO_OTRO" - saving same value: ""
    0.03: ...Session State: Save "P5_COSTOS_OTROS" - saving same value: ""
    0.03: ...Session State: Save "P5_X" - saving same value: ""
    0.03: ...Session State: Save "P5_NUM_CASO_LEGAL" - saving same value: "N/A"
    0.03: ...Session State: Save "P5_NUM_SEGUIMIENTO" - saving same value: "N/A "
    0.03: ...Session State: Save "P5_TIPO_1" - saving same value: "Reclamación"
    0.03: ...Session State: Save "P5_FECHA_OCURRENCIA" - saving same value: "07/07/2009"
    0.03: ...Session State: Save "P5_FECHA_RECLAMACION" - saving same value: "07/14/2009"
    0.03: ...Session State: Save "P5_TIPO_3" - saving same value: "vs -> AEE"
    0.03: ...Session State: Save "P5_DIR_OCURRENCIA" - saving same value: "FJFJGJGJG"
    0.03: ...Session State: Save "P5_CONCEPTO" - saving same value: "ACCIDENTE DE AUTO"
    0.03: ...Session State: Save "P5_PUEBLO_OCURRENCIA" - saving same value: "ARECIBO"
    0.03: ...Session State: Save "P5_DIRECTORADO" - saving same value: "JURÍDICA"
    0.03: ...Session State: Save "P5_TRIBUNAL" - saving same value: "Estatal"
    0.03: ...Session State: Save "P5_JUEZ" - saving same value: "SOTOMAYOR"
    0.03: ...Session State: Save "P5_INVESTIGADOR" - saving same value: "FRANKLIN DE LEÓN"
    0.03: ...Session State: Save "P5_SALA" - saving same value: "CAROLINA"
    0.03: ...Session State: Save "P5_DESCRIPCION" - saving same value: "ESTO ES UNA PRUEBA"
    0.03: ...Session State: Save "P5_STATUS" - saving same value: "Activo"
    0.03: ...Session State: Save "P5_CERRADO_POR" - saving same value: "GJGJGJG"
    0.03: ...Session State: Save "P5_REFERIDO_AUDITORIA" - saving same value: ""
    *0.03: Processing point: ON_SUBMIT_BEFORE_COMPUTATION*
    *0.03: ...Process "ADD_COSTO_ABOG": PLSQL (ON_SUBMIT_BEFORE_COMPUTATION) DECLARE BEGIN :P5_COSTO_ABOGADO := NVL(TO_NUMBER(:P5_COSTO_ABOGADO, 'FML999G999G999G999G990D00'), 0) + NVL(TO_NUMBER(:P5_COSTO_ABOG, '999G999G999G999G990D00'), 0) ; END;*
    *0.04: ...Session State: Saved Item "P5_COSTO_ABOGADO" New Value="1500"*
    0.04: Branch point: BEFORE_COMPUTATION
    0.04: Computation point: AFTER_SUBMIT
    0.04: Tabs: Perform Branching for Tab Requests
    0.04: Branch point: BEFORE_VALIDATION
    0.04: Perform validations:
    0.04: ...Item Not Null Validation: P5_FECHA_OCURRENCIA
    0.04: Branch point: BEFORE_PROCESSING
    0.04: Processing point: AFTER_SUBMIT
    0.04: ...Do not run process "Process Row of DJUR_REGISTRO", process point=AFTER_SUBMIT, condition type=, when button pressed=SAVE
    *0.04: ...Do not run process "reset page", process point=AFTER_SUBMIT, condition type=, when button pressed=CANCEL*
    0.04: Branch point: AFTER_PROCESSING
    0.04: ...Evaluating Branch: AFTER_PROCESSING type: "REDIRECT_URL" button: 5865832216570805 branch: (Unconditional)
    0.00:
    0.00: S H O W: application="109" page="5" workspace="" request="" session="2781321738472298"
    0.01: Language derived from: FLOW_PRIMARY_LANGUAGE, current browser language: en-us
    0.01: alter session set nls_language="AMERICAN"
    0.01: alter session set nls_territory="AMERICA"
    0.01: NLS: CSV charset=WE8MSWIN1252
    0.01: ...NLS: Set Decimal separator="."
    0.01: ...NLS: Set NLS Group separator=","
    0.01: ...NLS: Set date format="DD-MON-RR"
    0.01: ...Setting session time_zone to -06:00
    0.01: NLS: Language=en-us
    0.01: Application 109, Authentication: CUSTOM2, Page Template: 7583125804620784
    0.01: ...Session ID 2781321738472298 can be used
    0.01: ...Application session: 2781321738472298, user=AMALDONADO8580
    0.01: ...Determine if user "[email protected]" workspace "5742627952469825" can develop application "109" in workspace "5742627952469825"
    0.01: Session: Fetch session header information
    0.01: ...Metadata: Fetch page attributes for application 109, page 5
    0.01: Fetch session state from database
    0.02: Branch point: BEFORE_HEADER
    0.02: Fetch application meta data
    0.02: Computation point: BEFORE_HEADER
    0.02: Processing point: BEFORE_HEADER
    0.03: Show page template header
    REGISTRO Y SEGUIMIENTO DE LAS DEMANDAS Y RECLAMACIONES
    DIRECTORADO DE ASUNTOS JURÍDICOS
    División de Litigación
    0.04: Computation point: AFTER_HEADER
    0.04: Processing point: AFTER_HEADER
    0.04: ...Process "Fetch Row from DJUR_REGISTRO": DML_FETCH_ROW (AFTER_HEADER) F|#OWNER#:DJUR_REGISTRO:P5_SECUENCIA_PK:SECUENCIA_PK
    0.04: Authorization Check: "11032751347059544" User: "AMALDONADO8580" Component: "tab"
    (AMALDONADO8580)| Logout
    ADMINISTRACION
    0.05: Region: Breadcrumb
    División Jurídica (Home)Registro Demandas y ReclamacionesDatos
    COSTO DE ABOGADO AÑADIDO
    0.05: Computation point: BEFORE_BOX_BODY
    0.05: Processing point: BEFORE_BOX_BODY
    0.05: Region: Datos del Reclamante/Demandante
    Datos del Reclamante/Demandante
    0.05: Item: P5_NOMBRE_RECLAMANTE TEXT
    Reclamante:
    0.05: Item: P5_NUMERO_RECLAMANTE TEXT
    Núm Reclamante:
    0.05: Item: P5_NOMBRE_ACCIDENTADO TEXT
    Accidentado:
    0.05: Item: P5_DIR_POSTAL_OCURRENCIA TEXTAREA
    Dirección Postal: AVE CAMPO RICO
    0.05: Item: P5_PUEBLO_POSTAL_OCURR TEXT
    Pueblo:
    0.05: Item: P5_ZIP_CODE_OCURR TEXT
    Código Postal:
    0.05: Region: Datos Abogado Reclamante
    Datos Abogado Reclamante
    0.06: Item: P5_ABOGADO_RECLAMANTE TEXT
    Abogado:
    0.06: Item: P5_DIR_ABOGADO_RECLAMANTE TEXTAREA
    Dirección: CALLE BOTELLA ESQ TAPON ULTIMO PISO SIN ESCALON
    0.06: Item: P5_TEL_ABOGADO_RECLAMANTE TEXT
    Tel.:
    0.06: Region: Datos Abogado AEE
    Datos Abogado AEE
    0.06: Item: P5_ABOGADO_AEE COMBOBOX
    Abogado: SELECCIONE ANTONIO SILVA CARLOS AQUINO CÁNDIDA NEGRÓN EDDIE CUEVAS EDWIN J. RIVERA FERNANDO MACHADO JORGE MAFUS MARÍA MÉNDEZ PATRICIA GUIJARRO VIRIDIANA VAZQUEZ
    0.06: Item: P5_DIR_ABOGADO_AEE TEXTAREA
    Dirección: CALLE COLIBRI
    0.06: Item: P5_TEL_ABOGADO_AEE TEXT
    Tel.:
    0.06: Region: Detalles Financieros
    Detalles Financieros
    0.06: Item: P5_QTY_RECLAMADA TEXT
    Cantidad Reclamada:
    0.06: Item: P5_QTY_PAGADA TEXT
    Cantidad Pagada:
    0.06: Item: P5_NUM_CHK_PAGADA TEXT
    # Chk
    0.06: Item: P5_FECHA_CHK_PAGADA PICK_DATE_MM_DD_YYYY
    Fecha
    0.06: Item: P5_PAG3 STOP_AND_START_HTML_TABLE
    0.06: Item: P5_TIPO_2 RADIOGROUP
    Transacción Sentencia
    0.07: Region: Costos Asociados
    Costos Asociados
    0.07: Item: P5_COSTO_ABOG TEXT
    Abogado:
    0.07: Item: P5_COSTO_ABOGADO TEXT
    0.07: Item: P5_COSTO_PERITO TEXT
    Peritos:
    0.07: Item: P5_COSTOS_PERITOS TEXT
    0.07: Item: P5_COSTO_TRANSCRIP TEXT
    Transcripción:
    0.07: Item: P5_COSTOS_TRANSCRIPCION TEXT
    0.07: Item: P5_COSTO_TAQ TEXT
    Taquígrafo:
    0.07: Item: P5_COSTOS_TAQUIGRAFOS TEXT
    0.07: Item: P5_COSTO_OTRO TEXT
    Otros:
    0.07: Item: P5_COSTOS_OTROS TEXT
    0.07: Item: P5_X HIDDEN_PROTECTED
    0.08: Item: P5_TOTAL DISPLAY_ONLY_ESCAPE_SC Total: $3,500.00
    Compute
    0.08: Region: Datos de la Reclamación/Demanda
    Datos de la Reclamación/Demanda
    0.08: Item: P5_SECUENCIA_PK DISPLAY_ONLY_ESCAPE_SC
    Número Asignado:
    2009163
    0.08: Item: P5_NUM_CASO_LEGAL TEXT Núm Caso Legal:
    0.08: Item: P5_NUM_SEGUIMIENTO TEXT Número Seguimiento AEE:
    0.08: Item: P5_TIPO_1 CHECKBOX
    Tipo:
    Reclamación Demanda
    0.08: Item: P5_FECHA_OCURRENCIA PICK_DATE_MM_DD_YYYY Fecha Ocurrencia:
    0.08: Item: P5_FECHA_RECLAMACION PICK_DATE_MM_DD_YYYY Fecha Reclamación:
    0.09: Item: P5_TIPO_3 RADIOGROUP
    Clase:
    vs -> AEE AEE -> vs
    0.09: Item: P5_DIR_OCURRENCIA TEXTAREA Lugar de Ocurrencia:
    FJFJGJGJG
    0.09: Item: P5_CONCEPTO COMBOBOX
    Concepto:
    SELECCIONE ACCIDENTE DE AUTO ANIMALES CANCELACIÓN CAÍDAS COBRO DE DINERO CONTACTO ELÉCTRICO DAÑOS A LA PROPIEDAD DISCRIMEN INCENDIO INCUMPLIMIENTO DE CONTRATO LEY 33 PAGARÉ QUIEBRA SERVIDUMBRE SUSPENSIÓN SERVICIO ELÉCTRICO TELEFÓNICA
    0.09: Item: P5_PUEBLO_OCURRENCIA TEXT Pueblo:
    0.09: Item: P5_DIRECTORADO COMBOBOX
    Directorado:
    N/A EJECUTIVO GENERACIÓN, TRANSMISIÓN Y DISTRIBUCIÓN JURÍDICA PLANIFICACIÓN Y PROTECCIÓN AMBIENTAL RECURSOS HUMANOS SERVICIO AL CLIENTE SERVICIOS ADMINISTRATIVOS
    0.09: Region: Detalles
    Detalles
    0.09: Item: P5_TRIBUNAL RADIOGROUP
    Tribunal:
    Estatal Federal Administrativo
    0.09: Item: P5_JUEZ TEXT Juez:
    0.09: Item: P5_INVESTIGADOR COMBOBOX
    Investigador:
    SELECCIONE FRANKLIN DE LEÓN HÉCTOR DEL VALLE JUAN QUIÑONEZ MANUEL RODRÍGUEZ RAFAEL LUGO RODOLFO ESCALERA VIOLETA VÁZQUEZ
    0.09: Item: P5_SALA TEXT Sala:
    0.09: Item: P5_DESCRIPCION TEXTAREA
    Descripción Caso:
    ESTO ES UNA PRUEBA
    0.10: Item: P5_LINEA STOP_AND_START_HTML_TABLE
    0.10: Item: P5_STATUS COMBOBOX
    Status:
    Activo Cerrado - Denegado Cerrado - Desestimado Cerrado - Desistimiento Cerrado - Devuelto Cerrado - Prescrito Cerrado - Sentencia Cerrado - Transacción
    0.10: Item: P5_CERRADO_POR TEXT Cerrado por:
    0.10: Item: P5_REFERIDO_AUDITORIA CHECKBOX Referido a Auditoría
    0.10: Region: COMENTARIOS
    COMENTARIOS
    Añadir Comentarios
    0.10: show report
    0.10: determine column headings
    0.10: parse query as: JURIDICA
    0.10: binding: ":P5_SECUENCIA_PK"="P5_SECUENCIA_PK" value="2009163"
    0.10: print column headings
    0.11: rows loop: 15 row(s)
    Comentarios Usuario
    this is a test. AMALDONADO8580
    1
    0.11: Region: -
    Salir
    Actualizar
    0.11: Computation point: AFTER_BOX_BODY
    0.11: Processing point: AFTER_BOX_BODY
    0.11: Computation point: BEFORE_FOOTER
    0.11: Processing point: BEFORE_FOOTER
    0.11: Show page tempate footer
    Home Application 109 Edit Page 5 Create Session Activity No Debug Hide Edit Links Show Edit Links
    0.11: Computation point: AFTER_FOOTER
    0.11: Processing point: AFTER_FOOTER
    0.11: Log Activity:
    0.11: Execute Count=0
    0.11: End Show:

  • Problems using buttons

    Hi! I have a problem with my hp deskjet ink advantage 3515. I can't use up and down buttons. I open the printer and I can only press the OK button for COPY. Then I can only press the OK button for balck and white copying. I can't go down to choose paper type or settings or scan or anything else. When I first bought the printer I faced the same problem, but, after a while, it started working properly. I haven't used it in a while and now the problem reappeared. I don't know what I did the first time that made it work and I don't know what to do now. I truly hope someone can help me ... 

    Thank you for your response. I've tried your suggestions:
    1. I've plugged the printer directly into a wall outlet for power and didn't work .
    2. I've tried several times to install the latest Firmware Update, as you suggested, and got the same error "Problem found'' (I looked for an error state, I made sure the printer was powered on, so I supose the printer couldn't connect to my computer). Than I decided to reinstall the printer for the third time (I've reinstalled it two times before asking for your help) and guess what? It worked! I still don't know what the problem was, but now it's solved, just like the last time... 
    So, thank you again for your help and wish you a nice day!

  • Use Buttons to switch HTML Pages

    I have Dreamweaver 8 (as part of Studio 8 Mac). I use OSX.3.9
    on a G4-500, and OSX.4.7 on a PB17 !.67GB.
    I would like to have a home page with buttons some where
    acros the top or down one side. Maybe using a Tables, I would like
    to click a given button and the desired page would either come up
    replacing the previos page. Or if using a table, the top table part
    remains the same and either the right lower Table section or lower
    table section (depending upon where the button are) would change to
    contents of html page linked to. I've tried using an extension. But
    its my understanding I can actually do this from with Dreameaver
    without need of a Button designer extension.

    Create a graphic button. Place it on a page in the desired
    location.
    Select the button. Use the Property inspector to browse to
    and select a new
    page (the link field).
    Is that what you are asking?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "PJones, CET" <[email protected]> wrote in
    message
    news:e9do1o$5bs$[email protected]..
    >I have Dreamweaver 8 (as part of Studio 8 Mac). I use
    OSX.3.9 on a G4-500,
    >and
    > OSX.4.7 on a PB17 !.67GB.
    >
    > I would like to have a home page with buttons some where
    acros the top or
    > down
    > one side. Maybe using a Tables, I would like to click a
    given button and
    > the
    > desired page would either come up replacing the previos
    page. Or if using
    > a
    > table, the top table part remains the same and either
    the right lower
    > Table
    > section or lower table section (depending upon where the
    button are) would
    > change to contents of html page linked to. I've tried
    using an extension.
    > But
    > its my understanding I can actually do this from with
    Dreameaver without
    > need
    > of a Button designer extension.
    >

  • HI .. I have a new macmini 2.5 Ghz 10.7.3 Lion, had a problem today ,it froze so I could not shut down using mouse or tablet. used the power switch, when I tried to restart I got audible 'beeps' from it.

    HI ....I have a new macmini 2.5 Ghz 10.7.3 Lion, had a problem today ,it froze so I could not shut down using mouse or tablet pen. used the power switch, when I tried to restart I got audible 'beeps' from it. I managed to restart it but kept getting a message come up on one ot the dual screens ' restart using the power swich to turn it off , then press it again to restart.'
    This worked okay , but now it just keeps freezing whenever I start it up. I thought the issue could be my old Epson Expression 1680 scanner not being compatible , so I have unplugged it. I also had a look at the new memory I installed when I got it, but this seems not be the problem.
    It is connected up to an Eizo Flexscan S2231W using a cable straight into the HDMI input , the other monitor is a small Acer using the VGA into Thunderbolt port.
    When I turn the Eizo screen on first and then press the power button on the mac-mini, I hear the chime then the screen flahes the 'Digital no signal' message on and off for about 30 seconds , then the monitor comes on as normal. But it is still freezing up on me after using it for a while and I am having to use the power switch button to turn it off again.
    Can anyone help please.

    I really don't have an answer for that one. I guess that while trying to get things working correctly, I would use the most basic monitor I had which in your case would be the Eizon using the Thunderbolt port and adaptor.
    When you boot into Safe Mode the startup is quite slow, but you should get the Apple logo and then the spinning gear below it (release the SHIFT key when it appears.) Then after a little more time you should see a gray progress bar appear below the spinning gear. When that disappears the computer will startup to a login screen.

  • Using a dropdown to set a radio button

    I've been searching and searching in vain, trying many different things can I cannot seem to find an answer already or stumble on similar code to help.
    I've got a dropdown, then when you select different values set different fields on the form. That part works fine stuff like this in the custom validate:
    if (event.value == "Thing1") {
      this.getField("DESC01").value = "Words that fill in a desciption box.";
      this.getField("DESC02").value = "More words that fill in another descrption box";
      this.getField("F_SKILL1").value = "1";
      this.getField("RB_SKILL1").isBoxChecked(1);
      this.getField("F_SKILL2").value = "1";
      this.getField("F_SKILL3").value = "1";
    } else if (event.value == "Thing2") {
      this.getField("DESC01").value = "Different words that fill in a desciption box.";
      this.getField("DESC02").value = "More different words that fill in another descrption box";
      this.getField("F_SKILL4").value = "1";
      this.getField("RB_SKILL1").isBoxChecked(0);
      this.getField("F_SKILL5").value = "1";
      this.getField("F_SKILL6").value = "1";
    etc, etc. I've got a few different else ifs but they all follow this kind of format. There is are also radio button next to the skills on the sheet to visually display that skill is known. So I'd like to turn that radio button on. My isBoxChecked isn't working, and I expect that's because it doesn't work that way. I have a lot of radio buttons on the form, but they all have 1 choice in them none are groups. Again, I'm using this as a visual display that SKILLX is known. The area I've dropped the radio button onto the sheet is a very small circle which is why I am trying to use a radio button as it's visually similar.
    If there is a better solution to what I'm trying to do I'm happy to try that, or if someone can tell me what I'm doing wrong that'd be super
    Thanks!

    Not quite sure I'm getting what you are laying down...
    So in the dropbox, under options I should set the export value of Thing1 choice to RB_SKILL1 and then in my validate I should include this.getField("RB_SKILL1").value = 'Yes' ?
    Or I should just set the export value of Thing1 to this.getField?
    Thanks
    Oh, using a check box I was able to get this working using the export values set for Thing1 option, most excellent! Thank you very much!

  • Problems using version set in Elements 9

    Hi!
    I have problems using the version set. When saving files in the Element 9 editor I can not mark the "version set" option, its not highlighted and not possible to mark or use. Is there a basic setting that I´m missing or??? I have the MAC version of Elements.
    Also I have noticed that when I have edited a file in the Elements 9 editor and I come back to the Organizer the editor have changed the time of the photo? This means that its rather difficult to find the photo in the Organiser. It often change the time 1 or 2 hours.
    As I cant use the version set I can not keep my tags on the edited pictures. Is there a setting for keeping the tags and catalogue belongings to a edited file?
    As of today this software makes no sense to me and I can basically not keep working with it as it does not support basic functionality that I´m dependent on.
    Best Re
    A

    I’m not seeing this in my own version sets in PSE9; when I expand the set every image has the same date and time under each thumbnail.
    I’m wondering if you have used the “save for web” command at some point, which
     wipes all EXIF metadata, including the date & time of the original - in order to optimize the image for display on the internet. So if you have imported such an image Elements has to make an estimate. Apart from this known scenario I can’t really explain what’s going on.

  • Version 8.0 self installed the other day. My computer immediately began having problems. I uninstalled 8.0 TODAY and it just reinstalled itself. I NEVER use any software version that ends with .0 - please fix this problem or I'll switch to another browser

    Version 8.0 self installed the other day. My computer immediately began having problems. I uninstalled 8.0 TODAY and it just reinstalled itself. I NEVER use any software version that ends with .0 - please fix this problem or I'll switch to another browser

    '''I fixed mine by removing the Ask.com extension.'''
    Tools
    Add-ons
    Settings icon
    View Recent Updates
    Ask.com '''DISABLE'''
    Running FF 8.0 on Windows 7 (64-bit)

  • Use CS4. Switch from Win OS to Mac OS X. Download CS4 on iMac. But old product key is not recognised. How to solve problem?

    Use CS4.
    Switched computer with Win OS to iMac computer with OS X.
    Downloaded CS4 on iMac.
    But old product key entered is not recognised.
    How to solve problem?

    There is nothing to resolve. Serial numbers are platform specific, but platform swaps only apply to current versions, meaning CS&. Your CS4 is not eligible for an upgrade, so your only option is to buy a new CS6 license or sign up for Creative Cloud.
    Mylenium

  • VM Activation problem when using Internal Virtual Switch mode

    Hello,
    I have setup Windows 2012 R2 Standard Version host machine.  Hyper-V setup successful. Host machine already activate license.
    I have got a problem is when VM connecting with Internal virtual Switch.  It will not able to process Windows activation.  If it connected using External Virtual Switch, it can successful do windows activation.  However, using External Virtual
    Switch, one more WAN IP will be used.
    I am using ICS method to share the network interface to Internal Virtual Switch.
    Is it what problem and how to resolve it?
    Thanks!

    Hi Gyorgy,
    What is the version of your guest operating system? Why not we create an External Virtual switch to access Internet when using Hyper-V guest system? (Some reference if needed:Hyper-V Virtual Switch
    Overview )
    The network connection seems to be fine, if you mean the webpage can't be displayed through Internet Explorer, please take a look at the article below:
    "Internet Explorer cannot display the webpage" error
    For more information, please check:
    Fixing "Page cannot be displayed"
    Best regards
    Michael Shao
    TechNet Community Support

  • I have problem with my ipad when set up ipad asked to activation but i cant remember my apple id that i used to setup.now i can not open it .Is there any way to fix this problem?

    I have problem with my ipad when set up ipad asked to activation but i cant remember my apple id that i used to setup.now i can not open it .Is there any way to fix this problem?

    Hello Abdo_Zain,
    I would be concerned too if I was not able to gain access to my iPad.  If you are unsure what your Apple ID is, you can find the steps in this article:
    Apple ID: How to find your Apple ID
    http://support.apple.com/kb/HT5625
    You can reset a forgotten Apple ID password by going to the following link:
    Apple - iForgot
    https://iforgot.apple.com
    Also, you may be able to skip the step of entering your Apple ID if you are setting up the iPad for the first time.
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • My iPhone 4 keeps freezing up. I have turned it off, used the off switch n home button to try to restart it. It slowly comes on I type in my pass code which takes awhile to come up n it does do anything. I can't get in to any app.  Any suggestions?

    My iPhone 4 keeps freezing up. I have turned it off, used the off switch n home button to try to restart it. It slowly comes on I type in my pass code which takes awhile to come up n it does do anything. I can't get in to any app.

    try to back up and restore to factory settings
    iTunes: Backing up, updating, and restoring iOS software

Maybe you are looking for