ADF Code corner #50 - tree selection listener Table do not save the State of the

Hello world

With the help of JDev Studio Edition Version 11.1.1.3.0

I have a table of tree using the earphone generic selection based on the excellent article by Frank Nimphius during synchronization of forms for entries of tree node edit. http://www.Oracle.com/technetwork/developer-tools/ADF/learnmore/50-synchromize-form-TreeSelection-169192.PDF

My problem:

My selectedNodeRowKey and selectedNodeRowIterator variables are turning to null out the listener.

Process and code:

I select a node. It called the selection event of onTreeSelect, which in turn saves the node key and the iterator in the same support bean backingBeanScope value.
      DCIteratorBinding _treeIteratorBinding = null;
      _treeIteratorBinding = treeBinding.getDCIteratorBinding();
//Frank's code above ...

      this.selectedNodeRowKey = nodeBinding.getRowKey();
      for (Object opaqueFacesKey: treeTable.getSelectedRowKeys())
      {
        treeTable.setRowKey(opaqueFacesKey);
        this.selectedNodeRowIterator =
            ((JUCtrlHierNodeBinding) treeTable.getRowData()).getRowIterator();
      }

      System.out.println();
      System.out.println("Update Key: " + this.selectedNodeRowKey);
      System.out.println("Update Ite: " + this.selectedNodeRowIterator);

//Frank's code resumes ...
      Row[] found =
        this.selectedNodeRowIterator.findByKey(this.selectedNodeRowKey, 1);
Then, I click on a button that calls an actionListener in the same bean support.
  public void onButtonRemove(ActionEvent actionEvent)
  {
    System.out.println("Remove button pressed.");

    BindingContainer bindings = getBindings();

    System.out.println(this.selectedNodeRowKey);
    System.out.println(this.selectedNodeRowIterator);

    OperationBinding operationBinding =
      bindings.getOperationBinding("deleteChildren");
    operationBinding.execute();
    System.out.println("Remove complete");
  }
This gives me the result
Update Key: oracle.jbo.Key[112 ]
Update Ite: oracle.jbo.server.ViewRowSetImpl@aa641d
bos.model.queries.TbomView

Remove button pressed.
null
null
Remove complete
What happened to my values and node iterator? I guess it has something to do with a scope or something similar to C++ through reference instead of the value. The strange thing is, the default MakeCurrent onSelection the auditor's work, but use this generic listener and values change.

Published by: LovettWB on December 21, 2010 14:51

Hello

You can try setting the bean to the session scope? I guess it works, which brings me to my main point. If the managed bean is used in a stubborn workflow (which I assume you are referring to the use of fragments of page jsff), make sure that it is also defined in the workflow definition and not adfc-config. Personally, I like to feel it is best to set the bean managed in the metadata scopes, in which it is used. So could already solve the problem

Frank

Tags: Java

Similar Questions

  • question on the example of ADF Code corner: 007-how to cancel an edit form

    Hi all
    I'm testing the example * 007.How to cancel a modification form, cancelling the changes with ADFm recording points * in the oracle ADF code corner. I downloaded * 07-application manualtaskflowsavepoints *.
    http://www.Oracle.com/technetwork/developer-tools/ADF/learnmore/index-101235.html
    everything goes well. But in my case I need the user to stay on the same page after he Cancel button clicks. then in the file config.xml adfc I changed only the case of control flow
    <control-flow-case>
     <from-outcome>return</from-outcome>
     <to-activity-id>Browse</to-activity-id>
    </control-flow-case>
    This one
         
    <control-flow-case>
     <from-outcome>return</from-outcome>
     <to-activity-id>Edit</to-activity-id>
    </control-flow-case>
    However. When I run the application and click on the edit button, I have changed a few fields on the Edit page, then press the Cancel button, nothing happen and undo changes is not performed.
    Why restorePoint does not work as it is supposed to be if we do not have navigate to another page?

    Hello

    This is because the button cancel a immediate = "true" game, which bypasses the update model phase. To see the changes, you will need to re-run the iterator of the form explicitly and then refresh it partially. You don't need to do this, when you navigate to the page of the browser, because when the page loads, the lifecycle ADF will ensure that the iterator is updated. A test, you can set immediately = 'false', in which case the redirect must display the changed data.

    Frank

  • Broken link - ADF Code corner

    Virtually all of the links on this page redirects you to the homepage of jDeveloper.

    Thank you
    Michelle

    You will notice that the content is not quite the same, but as it was on the old page. I'm still being the complete ADF Code corner documents migrated to a new format of PDF.

    ...
    >
    and

    My current plan is to make the new searchable document by time formats OQ the middle of September.

    ...>

    So I guess you'll have to wait :-(

    Timo

  • Problem with "select * from table" for dynamic IN the list

    I have a 'for loop' based a query that does not work. The query is supposed to return the name of the table, the data type and the name of the column in the columns poses a number of name filters. The problem I have is when I run the query into a TOAD with:

    schema_list value SCOTT, MED and the clause of 'in' as ' to (select * from table (DATAPUMP_UTIL.in_list_varchar2 (:schema_list))))»

    The query returns the expected lines.

    When I have it in my code as shown below it returns no rows. I don't know what hurts me, but any help would be great! I'm on Oracle 11.1.0.6.0.
    PROCEDURE export_schema_ondemand (schema_list VARCHAR2, encrypt_file NUMBER default 0, mask_sensitive_data NUMBER default 0) IS  
        ...
        schema_list_t := my_package.in_list_varchar2(schema_list);
        ... 
        for c1 in
           (
            with ok_to_mask as (
            select 
                owner,
                table_name, 
                column_name
            from   
               all_tab_columns
            where
                owner in (select * from table(schema_list_t))
            minus
            (SELECT 
                c.owner,
                p.table_name,
                cc.column_name
            FROM 
                all_cons_columns cc, 
                all_constraints p,
                all_constraints c
            WHERE 
                c.owner in (select * from table(schema_list_t))
                c.constraint_type = 'R'
                AND p.owner = c.r_owner
                AND p.constraint_name = c.r_constraint_name
                AND cc.owner = c.owner
                AND cc.constraint_name = c.constraint_name
                AND cc.table_name = c.table_name
            UNION ALL
            SELECT 
                c.owner,
                cc.table_name,
                cc.column_name
            FROM 
                all_cons_columns cc,
                all_constraints p,
                all_constraints c
            WHERE
                p.owner in (select * from table(schema_list_t))
                AND p.constraint_type in ('P','U')
                AND c.r_owner = p.owner
                AND c.r_constraint_name = p.constraint_name
                AND c.constraint_type = 'R'
                AND cc.owner = c.owner
                AND cc.constraint_name = c.constraint_name
                AND cc.table_name = c.table_name))
            select 
                atc.table_name as mask_tab, 
                atc.column_name as mask_col, 
                atc.data_type as mask_type
            from   
                all_tab_columns atc,
                ok_to_mask otm
            where
                atc.owner = otm.owner
                and atc.table_name = otm.table_name
                and atc.column_name = otm.column_name
                and atc.owner in (select * from table(schema_list_t))
                and 
                (
                atc.column_name like '%LAST%NAME%'
                or atc.column_name like '%FIRST%NAME%'
                or atc.column_name like '%NAME_LAST%'
                or  atc.column_name like '%NAME_FIRST%'
                or  atc.column_name like '%ENAME%'
                or atc.column_name like '%SSN%'
                or atc.column_name like '%DOB%'
                or atc.column_name like '%BIRTH%'
                )
                and atc.column_name not like '%PHYSICIAN_%'
                and atc.column_name not like '%DR_%'
                and atc.column_name not like '%PROVIDER_%'
                and atc.column_name not like 'PRESCRIBER_%'     
           )
          loop
             ...
    
    FUNCTION in_list_varchar2 (p_in_list  IN  VARCHAR2)  RETURN VARCHAR2_TT is
    
        l_tab   VARCHAR2_TT := VARCHAR2_TT();
        l_text  VARCHAR2(32767) := p_in_list || ',';
        l_idx   NUMBER;
            
    BEGIN
        LOOP l_idx := INSTR(l_text, ',');
            EXIT WHEN NVL(l_idx, 0) = 0;
            l_tab.extend;
            l_tab(l_tab.last) := TRIM(SUBSTR(l_text, 1, l_idx - 1));
            l_text := SUBSTR(l_text, l_idx + 1);
        END LOOP;
    
        RETURN l_tab;
            
    END in_list_varchar2;
    Published by: BluShadow on June 29, 2011 16:11
    addition of {noformat}
    {noformat} tags.  PLEASE READ {message:id=9360002} TO LEARN TO DO THIS YOURSELF.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    Hello

    If you have a query that works well when you launch it directly, and that breaks down when you start with a procedure, this can be a problem of privileges.

    Points of view ALL_ * shows only the objects you have access, but using a procedure, privileges must be granted directly to the user and not with a role.

    You should check the SELECT privileges to your user through roles and give them directly to the user.

    Hope this will help.

    Sylvie

  • Windows mail. When sending a new email, I want to use the BCC field, that I can not select because it is not on the new Message. __How make CCB to come when I create a new message? This something __Is I can add tools please?

    Windows mail. When sending a new email, I want to use the BCC field, that I can not select because it is not on the new Message.
    How can I get the future BCC when I create a new message?
    Can I add tools please?

    Thanks for the reply Bruce Hagen. I am very grateful.

    Dave.

    In a new message window: view | All the headers. Check it out. Or, simply click on the button to easily add to your contacts list to: To, CC, or BCC.

    Bruce Hagen ~ MS - MVP [Mail]

  • cannot save modified photos. receive messages - "Nothing has been imported" "the file or folders selected to import did not contain the supported file type.

    If anyone can help. I use Photoshop elements 13. I can save is no longer modified pictures. receive messages - "Nothing has been imported" "the file or folders selected to import did not contain the supported file type. It began a few weeks ago and I had a friend come fix it only 2 days ago. It took several hours and I lost all the tags I had on more than 10,000 images. Now he has done it again. I'm so angry. I lost a lot of things. I don't want to keep bothering him with that. Help, please.

    Yes, open with editor.

  • ADF Code corner 64 - select several shuttles. Help, please

    Hi all.

    I have exactly the same case as described in the Code corner 64.
    The only difference is the name of VO and iterators.

    The value of the arrived of the shuttle piece of code below:
        public Integer[] getSelectedIndxs() {
            selectedIndxs = null;
            selectedIndxList = new ArrayList<Integer>();
            
            //get all enterprise role for the current selected user role
            DCIteratorBinding aclDciter = ADFUtils.findIterator("ACLvo1Iterator");
            RowSetIterator rsi = aclDciter.getRowSetIterator();
           
            //get access to the "EnterpriseRolesVOIterator"
            DCIteratorBinding enterpriseRolesIter = ADFUtils.findIterator("EnterpriseRolesVOIterator");
            
            while(rsi.hasNext()){
    
                //Get the key of enterprise role of the ACL
                Row rw = rsi.next();
                Key key = new Key(new Object[] { (String)rw.getAttribute("EnterpriseRolesId") });
                
                enterpriseRolesIter.setCurrentRowWithKey(key.toStringFormat(true));
    
                int indx = enterpriseRolesIter.getCurrentRowIndexInRange();
                selectedIndxList.add(indx);
            }
    
            selectedIndxs = selectedIndxList.toArray(new Integer[selectedIndxList.size()]);
            return selectedIndxs;
        }
    The value of "indx" looks good in the debugger.
    I also print a list of all of the table at the end and looks very good.

    The problem is that I get:
    * < SimpleSelectManyRenderer > < _getSelectedItems > found no value: 12 type: java.lang.Integer among the list of the SelectItems
    * < SimpleSelectManyRenderer > < _getSelectedItems > found no value: 13 type: java.lang.Integer among the list of the SelectItems
    * < SimpleSelectManyRenderer > < _getSelectedItems > found no value: 10 type: java.lang.Integer among the list of the SelectItems
    * < SimpleSelectManyRenderer > < _getSelectedItems > found no value: 11 type: java.lang.Integer among the list of the SelectItems
    etc...

    If anyone has AN idea please let me know. I'm going nuts with this...

    Thank you very much! I really appreciate

    Published by: apostolosk on March 15, 2012 12:06

    Finally, the error was the return index. I should had returned the values - not the index.

            ArrayList selectedValues = new ArrayList();
    
            //get all enterprise role for the current selected user role              //DCIteratorBinding aclDciter = (DCIteratorBinding)bindings.get("ACLvo1Iterator");
            DCIteratorBinding aclDciter = ADFUtils.findIterator("ACLvo1Iterator");
            aclDciter.executeQuery();
            RowSetIterator rsi = aclDciter.getRowSetIterator();
    
            Row[] rw1 = rsi.getAllRowsInRange();
            for (Row rowa : rw1){
            System.out.println("display row" + rowa.getAttribute("EnterpriseRolesId"));
                selectedValues.add((String)rowa.getAttribute("EnterpriseRolesId"));
            }
    
            return selectedValues.toArray(new String[selectedValues.size()]);
    

    Thank you very much.

  • Failed to get child node in tree selection listener

    I do a web application using JDeveloper 11 G (11.1.1.2.0) merge.

    I created two display objects linked together. Let's call them VoDepartments and VoEmployees, connected by DepartmentId.

    I hava done a tree with an af:switcher
    <af:switcher id="s1" facetName="#{node.hierType.structureDefName}">
     <f:facet name="view.VoDepartments">
      <af:outputText value="#{node}" id="ot1"/>
     </f:facet>
     <f:facet name="view.VoEmployees">
      <af:outputText value="#{node}" id="ot2"/>
     </f:facet>
    </af:switcher>
    I made a selection listener based on a guide about Frank Nimphius
    RichTree tree1 = (RichTree) selectionEvent.getSource();
    RowKeySet rks2 = selectionEvent.getAddedSet();
    Iterator rksIterator = rks2.iterator();
     
     if (rksIterator.hasNext()){
      List key = (List)rksIterator.next();
      JUCtrlHierBinding treeBinding = null; 
      treeBinding = (JUCtrlHierBinding) ((CollectionModel)tree1.getValue()).getWrappedData();
    
      JUCtrlHierNodeBinding nodeBinding = nodeBinding = treeBinding.findNodeByKeyPath(key);
                
      String nodeStuctureDefname = nodeBinding.getHierTypeBinding().getStructureDefName(); //Here is the nullpointerexception for employees
              
      String employees = "view.VoEmployees";
      String departments = "view.VoDepartments";
               
      if (nodeStuctureDefname.equalsIgnoreCase(departments)){
       String dept = (String) nodeBinding.getAttribute("Department_name");   
       System.out.println("Department = "+dept);
      }
      else if (nodeStuctureDefname.equalsIgnoreCase(employees)){
       String emp = (String) nodeBinding.getAttribute("First_name");   
       System.out.println("Employee = "+emp);
      }
      else{
       //what the heck did the user click on? Ask him ;-)
      }
     }
    Pagedef:
    Executables:
    <iterator Binds="VoDepartments2" RangeSize="25" DataControl="AppMainDataControl" id="VoDepartments2Iterator"/>
    
    Bindings:
    <tree IterBinding="VoDepartments2Iterator" id="VoDepartments2">
     <nodeDefinition DefName="view.VoDepartments" Name="VoDepartments20">
      <AttrNames>
       <Item Value="DepartmentId"/>
      </AttrNames>
      <Accessors>
       <Item Value="VoEmployees"/>
      </Accessors>
     </nodeDefinition>
     <nodeDefinition DefName="view.VoEmployees2" Name="VoDepartments21">
      <AttrNames>
       <Item Value="First_name"/>
       <Item Value="Last_name"/>
      </AttrNames>
     </nodeDefinition>
    </tree>
    The works of the tree just fine and all he has to list the list. I can click on the Department and my interlocutor selection departments name printed in the console.
    I can develop a Department and the list of employees. The problem is when I click on an employee, I get null pointer exception.

    I discovered that the listener selectins is not nodeBiding for employees. NodeBinding.getHierTypeBinding () .getStructureDefName () Yes; throw NullpointerException.

    Someone has an idea what is wrong? Help, please.
    -Thomas

    Published by: Thomas H on March 22, 2010 08:21

    Thomas,

    I was able to reproduce the problem and resolved. View objects only reading is not a primary key set. So just change all attributes that participate in a primary key and the value of the 'key' button I'll add a note to the blog post original th

    Frank

  • Privilege system to create constraints on the Tables belong not to the

    I'm a user of the application who must create and then drop a check constraint on a table that is partitioned in another schema. The code is generic, and the name or the table owner is not known in advance.

    The user of the application has the ALTER ANY TABLE system privilege granted via a role, and also has "all THE ' table privileges on the table, THE DML privs, SELECT, REFERENCES etc. - also through roles. The user of the application has a synonym private for the data table.

    The command I use is:

    ALTER TABLE any_table
    ADD CONSTRAINT generated_name
    CHECK (CASE WHEN BUSINESS_DATE = TO_DATE('20121130','YYYYMMDD') AND = 6 AND PROCESSING_LOCATION = "CAP" RUN_ID THEN 1 OTHER 2 END = 2);

    It fails with:

    ORA-00942: table or view does not exist

    The user of the application can query the table very well and even modify it to partition exchange using a similar code. I tried the table name and the name of constraint qualification with the owner of the schema; calling the makes table name no difference, by qualifying the name of the constraint is not allowed. I changed the body of the constraint to a simple condition - it predictable made no difference.

    I would appreciate your help and your suggestions.

    Has nothing to do with privileges. ALTER TABLE requires the name of the table. Synonym will not fly. Use:

    ALTER TABLE table_owner.table_name
    ADD CONSTRAINT generated_name
    CHECK( CASE WHEN BUSINESS_DATE = TO_DATE('20121130','YYYYMMDD') AND RUN_ID = 6 AND PROCESSING_LOCATION = 'PAC' THEN 1 ELSE 2 END = 2);
    

    SY.

  • E/s files does not save the items in the table

    I can't save the items in the table. If I quit the program and restart it, the array starts at 0 again. I want it from the value at which it stopped.

    Is this a flaw in the Subvi "Timer A1"?

    Thanks for the help.

    mhaque

    Your feedback nodes are defined overall boot on the first call, as evidenced by the glyphs.  If you are stop and start your program, must be configured to initialize worldwide on the compilation or the load, simply right-click and change the setting.  This should give you the behavior you're looking for, but does not exclude the intrinsic problems with the code.

  • A table does not remove the lines

    I created a tabular presentation. I select one or more lines with the line selector. I click the button Delete and you get a warning/confirmation message. I select OK, then refresh the page. I selected the lines are always present.

    I edited the multi-rang button - remove and found that Action of database has been set no Action database, so I changed it to Action SQL DELETE.

    Still not delete.

    What Miss me?

    Hi mdwyer,.

    I edited the multi-rang button - remove and found that Action of database has been set no Action database, so I changed it to Action SQL DELETE.

    No need for the modification of database SQL DELETE action Action, it is correct with no Action from the database.

    I created a tabular presentation. I select one or more lines with the line selector. I click the button Delete and you get a warning/confirmation message. I select OK, then refresh the page. I selected the lines are always present.

    1. check that the request after clicking on delete...

    For example

    JavaScript:apex.confirm (htmldb_delete_message, 'MULTI_ROW_DELETE');

    Here MULTI_ROW_DELETE is passing as request.

    2. change your ApplyMRD process and check the status

    When you press the button: no condition button

    Condition type: request = Expression1

    Expression 1: MULTI_ROW_DELETE

    Check the request that you place the button Delete is same as a condition of the terms of the Expression 1 or not.

    Or better, you can create examples on apex.oracle.com, which helps the user to study and solved the problem.

    If your problem still persists, then try to recreate the form of tables and check.

    Hope this helps you,

    Reg

  • Data in the table is not in the xml target file loading

    Hello

    My source is an Oracle Table employees and target xml file.

    The performance of the interface, I get no error.

    The last step code is:-

    CREATE the FILE "C:/emp5.xml".

    I have the model, the table xml has 107 records of the employees source table, but nothing in the xml file.

    Please can I know what is the problem.

    Thank you

    Make sure of course gave the orders correctly. If the sequence is missing, you won't see it.

    Thank you

    Chantal

  • dynamic generated tabs of the table, can not get the values incremented for the action of the button

    HI -.

    Here is the configuration:

    I have a basic table that has 6 values in there (i.e. the tabs).

    The tabs are generated without problem and when I discover things six show.  For example:

    Video clip: frame = 1 Target = "_level0.tabsMC6"

    so it's cool.

    Now when I go to configure the action of button for these babies, if I use the _level0.tabs.MC6 so that I can trigger button available for this tab or one if I change the value of tabsMC.  What I want to do is to try to reduce the code and have an increase in value of tab, but the best I could achieve is to have the last work in the tab.  What is interesting is that if I try an other tabs (1-5) they are all trigger tab #6.

    What I have right now is:

    function tabCount (): Void {}
    for (i = 0; i < _root.slideContainerMC.tabList.length; i ++) {}
    _level0 ["tabsMC" + i].clickerMC.onRollOver = function() {}
    _level0 ["tabsMC" + i].gotoAndStop("on");
    }
    }
    };

    (Note: tabList is the picture I mentioned above and Yes, in an another MC, which = code in every sense but I'm in a hurry)

    I need guidance is how to get all the tabs for the actions of the individual buttons.  I thought that the script above woul have then button actions for

    tabsMC1

    tabsMC2

    tabsMC3

    tabsMC4

    tabsMC5

    tabsMC6

    what it does exactly.  tabsMC6 is the only tab that will show you the status 'on' - I can ride on one of them, and it's the only tab that says this rather than EACH tab showing a State.

    Looks like I'm missing what is obvious!

    Thank you!

    you define tabMC0,..., tabMC5.  If you want tabMC1,..., tabMC6 use:

    function tabCount (): Void {}
    for (i = 1; i<=_root.slideContainerMC.tabList.length; i++)="">

    _level0 ["tabsMC" + i] .ivar = i;

    _level0 ["tabsMC" + i].clickerMC.onRollOver = function() {}
    This._parent.gotoAndStop("on");
    }
           
    _level0 ["tabsMC" + i].clickerMC.onRollOut = function() {}
    This._parent.gotoAndStop ("OFF");
    }
           
    _level0 ["tabsMC" + i].clickerMC.onRelease = function() {}
    This._parent.gotoAndStop ("delivery");
    }
    }
    };

    and the ivar part provided that you would need the ith tab to know that it is the ith tab.  Ivar stores that I have the value used when this particular tabMC was created.  If you don't need that, delete it.

  • Firefox is slow to start, when I select address or homepage it opens automatically. Do reset firefox before but not save the settings so reluctant to do it again.

    When I open firefox my homepage or any address is very slow in opening. But when I select address little whatever it is, it opens automatically. I did a reset on firefox, but it did not spare the words password or settings, so I hesitate to do it again.

    For later use, it is possible to retrieve the settings of the folder on the desktop "old data Firefox:

    Please consider these troubleshooting steps:

  • Visible data in a 2D table but not in the Table connected control

    In the attached drawing, you will see that I take control of Table in table form, change the items to help replace a subset of table and then return the resulting table in the Table control.

    I can see my data in "Table of output" and a probe on this thread, but my Table control is empty.  The Table control is 10 columns of 50 lines.

    Can someone tell me why there is no data for the Table control?

    Please do not ask I post the VI because it is big, ugly and not mine to post.

    I can't believe.

    I couldn't see the data because it was out-of-frame.  My Control Panel flashed down a 30 line window and my data was in the first line only.

Maybe you are looking for

  • Find the Outlook Express messages to export to new PC

    When I try to export my messages and OE6 files, I get an error message.  It is said: "the export could not be performed.  An error occurred during initialization of MAPI. "What do I do? Thank you John (Cincinnati)

  • E4200 - renew (firmware 1.0.02) IP address problem

    I've recently updated E4200 firmware to version 1.0.02 (since version 1.0.01 which was working fine). Upgrade was closed successfully, but the router continues to renew the IP (Automatic Configuration - DHCP).  I use E4200 with FiOS Actiontec modem (

  • BOXES OF THE ICON AT THE BOTTOM OF MY SCREEN - HELP!

    I just want to know how to make sure they don't always cover everything I do. How would I change this setting? Thank you

  • No guest for username and password

    I changed servers. When I did that the page has disappeared and the only thing I see is that a box is telling me I don't have permission to enter the site. I guess I have to republish the site. The problem beside it is that now I don't have a user na

  • Creative photography plan Cloud: how to get a new code?

    I have creative cloud for Photoshop and LIghtroom, to $9.99 per month. I am trying this software on a new computer. Request a key code, I did more. How can I get another code key for this software?