UIX choice component event handling

Hi, I am using UIX in JDEV 10G. My page has a few dependent uix choice components on it. The first choice populates the second choice box and so on. I am using primaryClientActions to handle firing the event of populating the choice box. Below is the EventHandler for the fired event. I have a viewObject and AppModule. I set the where clause on the viewobject with the parameters from the previous choice selection. My question is: How do I get my query results back to my UIX choice component. I thought if I called executequery() it would update the view Objects query and update my page, but I think I am missing a step.
public static EventResult fminstEventHandler(BajaContext context,Page page,PageEvent event) throws Throwable
result = new EventResult();
fmInst = event.getParameter("FmName");
DeptAppModuleImpl dam = new DeptAppModuleImpl();
ViewObject deptView = dam.getDeptView1();
deptView.setWhereClause("where inst ='" + fmInstNum +"' and dept != '*****' and guide_yr ='"+guideyr +"' union select 'ALL', '0' from dual");
deptView.executeQuery();
return result; //result is nothing right now.
Thanks for your help.
McKell

Sure. Thanks for responding to my question. Below is the UIX file:
<?xml version = '1.0' encoding = 'windows-1252'?>
<page xmlns="http://xmlns.oracle.com/uix/controller"
xmlns:ui="http://xmlns.oracle.com/uix/ui"
xmlns:data="http://xmlns.oracle.com/uix/ui"
xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el"
xmlns:myTemplate="CourseTransferTemplate">
<templates xmlns="http://xmlns.oracle.com/uix/ui">
<templateImport source="CrsTranTemplate.uit"/>
</templates>
<content>
<dataScope xmlns="http://xmlns.oracle.com/uix/ui">
<provider>
<!-- Add DataProviders (<data> elements) here -->
</provider>
<contents>
<document xlmns="http://xmlns.oracle.com/uix/ui">
<metaContainer>
<!-- Set the page title -->
<head title="Course Transfer Search"/>
</metaContainer>
<contents>
<body>
<contents>
<form name="form0">
<contents>
<!-- <formParameter name="event"/> -->
<myTemplate:CourseTransferTemplate selectedTab="0"
title="Course Transfer Search"
xmlns:myTemplate="CourseTransferTemplate">
<contents>
<rawText
text="<p>Welcome to the Utah System of Higher Education (USHE) Course Transfer Guide on the Web!
<p>The USHE Course Transfer Guide provides course-by-course articulation and transfer information. It shows how a course at the institution you are transferring from (the 'from' school) articulates with a course at the institution to which you plan to transfer (the 'to' school). The USHE Course Transfer Guide has been developed by the Utah Transfer Articulation Committee and the ">
<contents>
<link text="Utah System of Higher Education"
destination="http://www.utahsbr.edu"/>
<rawText text="(USHE). It is updated every year by participating institutions and a new guide is published in the fall.<p>"/>
</contents>
</rawText>
<!-- GuideYR -->
<rawText text="Guide Year ">
<contents>
<choice model="${data.TransferGuideUIModel.GuideYr2}" name="GuideYr2" prompt="GuideYr2" >
<primaryClientAction>
<firePartialAction event="guideyrEvent"
formSubmitted="true"
/>
</primaryClientAction>
<contents childData="${data.TransferGuideUIModel.GuideYr2.displayData}">
<option model="${uix.current}" text="${uix.current.prompt}"
value="${uix.current.prompt}" />
</contents>
</choice>
</contents>
</rawText>
<!-- FmName -->
<rawText text="From Institution ">
<contents>
<choice model="${data.TransferGuideUIModel.Name}"
name="FmName" prompt="FmName">
<primaryClientAction>
<firePartialAction event="FmInstEvent"
formSubmitted="true"
targets="Department"/>
</primaryClientAction>
<contents
childData="${data.TransferGuideUIModel.Name.displayData}">
<option model="${uix.current}"
text="${uix.current.prompt}"
value="${uix.current.prompt}"/>
</contents>
</choice>
</contents>
</rawText>
<!-- Dept -->
<rawText text="From Department ">
<contents>
<choice model="${data.TransferGuideUIModel.Dept}" name="Dept" prompt="Dept">
<primaryClientAction>
<firePartialAction event="DepartmentEvent"
formSubmitted="true"
targets="Course"/>
</primaryClientAction>
<contents childData="${data.TransferGuideUIModel.Dept.displayData}">
<option model="${uix.current}"/>
</contents>
</choice>
</contents>
</rawText>
<!-- Crs -->
<rawText text="From Course ">
<contents>
<choice id="Course" name="Crs" nodeID="Course">
<primaryClientAction>
<firePartialAction event="CourseEvent"
formSubmitted="true"
/>
</primaryClientAction>
</choice>
</contents>
</rawText>
<!-- ToName -->
<rawText text="To Institution ">
<contents>
<choice model="${data.TransferGuideUIModel.Name}"
name="ToName" prompt="ToName">
<primaryClientAction>
<firePartialAction event="ToInstEvent"
formSubmitted="true"
/>
</primaryClientAction>
<contents
childData="${data.TransferGuideUIModel.Name.displayData}">
<option model="${uix.current}"
text="${uix.current.prompt}"
value="${uix.current.prompt}"/>
</contents>
</choice>
</contents>
</rawText>
<button text="Find Articulations"/>
<rawText text="<p>Choose the academic year you want to search for articulations. Then choose the institution you are transferring from. After you make your selection, a list of departments will be created for you to choose from. Once you choose your department, a list of courses will be created for you to refine your selection. You will then choose which institution you would like to transfer to (you may choose all institutions) and click on 'find articulations'. "/>
</contents>
<tabs/>
<pageButtons/>
<globalButtons/>
<pageHeader/>
<start/>
<end/>
<about/>
<copyright/>
<privacy/>
<corporateBranding/>
<productBranding/>
</myTemplate:CourseTransferTemplate>
</contents>
</form>
</contents>
</body>
</contents>
</document>
</contents>
</dataScope>
</content>
<handlers>
<!-- Add EventHandlers (<event> elements) here -->
<event name="*" source="FmName">
<method class="mypackage1.EventHandlers" method="fminstEventHandler"/>
</event>
<event name="*" source="Department">
<method class="mypackage1.EventHandlers" method="deptEventHandler"/>
</event>
<event name="*" source="GuideYr2">
<method class="mypackage1.EventHandlers" method="guideyrEventHandler"/>
</event>
<event name="*" source="Course">
<method class="mypackage1.EventHandlers" method="courseEventHandler"/>
</event>
<event name="*" source="ToName">
<method class="mypackage1.EventHandlers" method="toinstEventHandler"/>
</event>
</handlers>
</page>
HERE IS THE EVENT HANDLER:
public static EventResult fminstEventHandler(BajaContext context,Page page,PageEvent event) throws Throwable
try
con = new DBConnection();
catch (SQLException e)
System.out.println(e);
fmInst = event.getParameter("FmName");
ResultSet rset = con.query(namesql); //Here con connects to my database and preforms a query.
while(rset.next())
fmInstNum = rset.getString(1);
System.out.println(fmInstNum);
//DeptAppModule and DeptView are an Application Module and View Object I created from the JDeveloper wizards
DeptAppModuleImpl dam = new DeptAppModuleImpl();
ViewObject DeptView = dam.getDeptView1();
DeptView.setWhereClause("where inst ='" + fmInstNum +"' and dept != '*****' and guide_yr ='"+guideyr +"' union select 'ALL', '0' from dual");
DeptView.executeQuery();
//This is where I don't know how to return the result from the query back to the uix choice component named "Dept"
return new EventResult(page);
Thanks you so much for your assistance. I might be approaching this completely wrong. I am new to JDeveloper and the UIX framework. Thank you again.
McKell

Similar Messages

  • View not copied or enhanced with wizard Error while creating Event Handler method in Z Component

    Hello Friends,
    In one Z Component (Custom Component), in one of the views, while creating event handler, it gave me error message that view not copied or enhanced with wizard.
    I am aware that in Standard Component, if we want to create the event handler method then we need to first Enhance the Component and then we need to enhance the view.
    But, in the Z Component (Custom Component), how to create event handler method in one of the views as while creating event handler method i am getting view not copied or enhanced with wizard error.

    Hi,
    Add a method in views impl class with naming convention eh_on__* with htmt and html_ex parameters.  I dont have have the system right now. Please check any existing event import export parameters.
    Check out do handle event method in the same class.
    Redefine that method.  Call that event method in this handle method. See existing code for reference.
    Attach that event to the button on click event in .htm page.
    Regards,
    Bhushan

  • Event Handling in Abstract Portal Component

    Hi Friends,
    I am using HTMLB Classlib in an Abstract Portal Component to develop a Dropdownlistbox. Now I want to handle the event of change of selection in this dropdown. However, this event is not getting captured. Sample code is as follows:
    public class dropdownsimple extends AbstractPortalComponent
                           public void onClick(Event event)
                           public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
                                                    IPageContext myContext1 = PageContextFactory.createPageContext(request, response);
              Form myForm = myContext1.createFormDocument("CRMForm");
              GridLayout myGrid = new GridLayout();
              DropdownListBox drp = new DropdownListBox("drp");
              drp.addItem("Key 1","Item 1");
              drp.addItem("Key 2","Item 2");
              drp.setOnSelect("onClick");
                                                     myGrid.addComponent(1, 1, drp);
              myForm.addComponent(myGrid);
              myContext1.render();
    I am able to see the dropdown box along with values when I preview the PAR iView created from this component. Please let me know how to capture the event of change of selection in the dropdown?
    Edited by: Shetul Chothani on Jun 21, 2011 6:37 AM

    Hi,
    Change this line
    drp.setOnSelect("onClick");
    to
    drp.setOnSelect("click");
    and leave the line
    public void onClick(Event event)
    as it is, and it should work just fine.
    I.e., if you name your event "fooBar", the event handler should be named "onFooBar"
    Cheers,
    Robin

  • How can I add new event handler in BC4J event flow in UIX?

    How can I declarativly add extension to existing event handleres in BC4J+UIX page?
    I generate through wizards UIX+BC4J pages and I want extend some actions in eventhandlers section. Can I do it in some way like <event name=".." method=".." class=".."> like in any regular event handlers?

    you can use the <method ..> event handler inside the BC4J event handlers, like:
    <bc4j:findRootAppModule name="EmpAppModule" >
    <bc4j:findViewObject name="CurrentDeptEmpsVO" >
    <method class="myPackage.myClass" method="doOperation"/>
    </bc4j:findViewObject>
    </bc4j:findRootAppModule>

  • UIX with XSQL as XML data provider and event handler

    Hello ,
    I would like to bind XML data to messageinput elements of a form element
    as values to be presented before entering (data provider)
    as well as input values to be persisted after completing the form (event handler).
    My impression (as a newbee) is that only for BC4J integration there is a bidirectional binding with view objects.
    Can i use 'include' to bind a static xml file as data source for output?
    How can i use XSQL to be bound as data for input as well as for output of a form?
    A last question concerning a page with 3 tabs:
    do i need 3 different pages and requests to get the data of the 3 tabs
    or is it possible to get the whole data of the page in one request
    and distribute it over the 3 tabs.
    Any help appreciated
    Thanks
    Klaus Dreistadt

    You could do this, but we don't provide any tools to make this easy.
    You'd have to write an implement of the DataObject interface
    that gives your UI access to the XML document, and write custom
    event handlers to perform the "set" side of things. The Data Binding
    and UIX Controller chapters of the UIX developer's guide will give you
    a high-level view of how to accomplish this, but nothing specifically
    about reading or writing to XML documents.

  • STRUTS and UIX: How to use getCustomMethod in event handler

    I am having app module method exposed to a client as my custom method that does something. Then I have a data page (UIX) with a submit button that triggers event handler:
    public void onMyEvent(DataActionContext ctx) {
        HttpServletRequest request = ctx.getHttpServletRequest();
        HttpSession session = request.getSession();
        JUCtrlActionBinding method = ctx.getCustomMethod();
        if (method == null) System.out.println("method is null!!!!!!!!!!!");for some reason my method handle is null WHY???
    this seems to work when I call my method from findForward() though.

    If you use ADF BC, you can override the method create(AttributeList) in the Entity Object implementation class (EmployeesImpl.java).
    Use: Menu --> Tools --> Override Methods --> create
    In the overridden create method you can assign the next value from a DB sequence (e.g. EMP_SEQ) to the ID attribute:
    protected void create(AttributeList nameValuePair) {
    // Super
    super.create(nameValuePair);
    // Id
    SequenceImpl s = new SequenceImpl("EMP_SEQ", getDBTransaction());
    setEmployeeId(s.getSequenceNumber());
    }

  • JDEV 10.1.2 UIX Tree Event Handler

    Hi,
    I have built my tree bound to two ADF entities/views.
    It works fine in a small standalone application, but as soon as I try to integrate it with my main app it fails to call either the "null" or the "expand" event handler (null for page rendering and expand for... well expanding the node (see below))
    I've run it in debug and the event code just isn't getting fired
    There must be something in my main app that is intercepting the event handler before it gets to my uix handlers.
    New to all this so any help greatly appreciated!
    In summary, what would intercept default event handling in a uix page.
    Thanks
    Mark
    <handlers>
    <event name="expand">
    <method class="view.TreeUtils" method="doTreeEvent"/>
    </event>
    <event name="null">
    <method class="view.TreeUtils" method="doTreeEvent"/>
    </event>
    </handlers>

    Hi,
    it appears that if I change the forward to have 'redirect="true"' within the struts config file then this works fine now.
    Mark

  • UIX event handler + struts

    Hi,
    I'm using UIX + struts in jdev10g and im getting problems trying to handle a simple action binding event like the "Next" operation. Below is a short example of what im trying to do.
    Test.uix
    <submitButton text="Next" model="${bindings.Next}" id="Next2" event="next"/>
    <event name="next" source="Next2">
    <invoke method="doIt" javaType="oracle.jbo.uicli.binding.JUCtrlActionBinding"
    instance="${bindings.Next}"/>
    </event>
    testAction.java
    public void onNext(DataActionContext ctx)
    if (ctx.getEventActionBinding() != null)
    ctx.getEventActionBinding().doIt();
    If i run the code above i can see that it executes ctx.getEventActionBinding().doIt(); but the action binding never gets executed, and this efect is the same for other actions like create,previous etc...
    Another thing that calls my attention is that every time i drag a operation from the DataControl Palette the event name is always "action"
    <submitButton text="First" model="${bindings.First}"
    id="First0" event="action"/>
    So how is the correct way to handle events in the UIX + Struts?????
    Please i need a help on this one!!!!!
    Tanks,
    Eduardo M. Sasso

    First of all tanks for the help.
    But what i want to do is to subclass the DataForwardAction for my DataPage and let the struts controller handle the event, just like the documentation says...
    About Event Handling in Applications Using Oracle ADF, UIX, and Struts
    http://helponline.oracle.com/jdeveloper/help?topic=adf_auixadfevents_html
    If i try to do the same thing using jsp it works great...
    This is problem is getting me nuts!!! it looks to me that this problem is very easy to solve but i just cant see the solution....
    tanks again

  • UIX-XML BC4J Question regarding event handling

    How can I use/access Application Module, defined in UIX-XML page (using <bc4j:registryDef>), in my event handler method ???

    Sorry for the confusion. I figured out what you were asking.
    The right way is this.
    First, in your UIX XML page, declare your handler like this:
    <event name="%myEvent%" >
    <bc4j:findRootAppModule name="%ModuleName%" >
    <method class="%eventclass%" method="%eventmethod%" />
    </bc4j:findRootAppModule>
    </event>
    the strings in the % have to be replaced with your own particular names. %ModuleName% should be the same as the name of the module in the registry.
    Then in the event handler %eventclass%.%eventmethod% you can use this to find the Application Module:
    oracle.jbo.ApplicationModule mymodule
    = oracle.cabo.data.servlet.bind.ServletBindingUtils.getApplicationModule(context);
    "context" is passed in to your event handler as a BajaContext. ServletBindingUtils has several other methods for getting BC4J stuff, you should look at its definition.
    Joe

  • Print Preview texts from event handler of a web UI component enhancement

    Hello,
    I've enhanced View GSTEXT/List to add Print Preview button. What I've done in the event handler is to read the text with  function module READ_TEXT and I have all my text in the lt_lines internal table. Now I want to View this text in PDF format. I just realized I can't call a smartform directly from my event handler and I also can't call an adobe form to do this for me. Can anyone help me on how to resolve this?

    Hi Khaya,
    I see two things you might have done not quite right:
    Why do you use "READ_TEXT" when all the data is already there in the BOL? Did you ever have a look at the logic the WebClient uses to display the text? Go check it now!
    Of course you can call an Adobe or Smart Form in an event handler. The bigger problem might be getting the response to the user.
    Not knowing your exact logic I would recommend:
    Use the BOL to retrieve all data.
    In the method where you create the button use CL_CRM_WEB_UTILITY to create the JavaScript code for a client callback handler. Then in the handler create the PDF and return it to the user. You can just set the XSTRING to the response.
    cheers Carsten

  • How to set event handler in af:inputText  adf faces component.

    Hi,
    I am using ADF Faces components for my application.
    I want to capture the onchange event of a text box on the server side.For this what should I do. How do I register an event handler for this.
    In the documentation of the CoreTags of the ADF for onFocus it is stated as below.Will this help me in any manner ?
    onfocus String the event handler for when the element receives focus.
    Please help me.
    Regards
    Uma

    Uma,
    - set autosubmit to true
    - set a value change listener in the managed bean
    Frank

  • Event handling in LOV

    Hi There,
    We have a use-case where we need intercept the event of af:inputComboboxListOfValues component.
    I have table, which has three columns, Name, Description and Label.
    I have a LOV on Name column.
    When user change the value of Name column by selecting an value from dropdown, I need to do business validation, I show user the "Yes/No" popup with warning message, and base on the user's choice, either proceed with the change or stop the change.
    My problem is that I am unable to find a appropriate event to show the popup.
    I know there are several events in the af:inputComboboxListOfValues component, launchPopupEvent, returnPopupEvent and valueChangeEvent.
    1. If I show popup on launchPopupEvent, after the user click "Yes/No" button on the popup, the page will be refreshed and dropdwon doesn't show the item list.
    2. returnPopupEvent and valueChangeEvent event will be handled by framework in one request, there is no chance for user's interaction.
    I am not familiar with ADF event handling machenism, can anyone help me?
    Thanks in advance.
    Thunder
    Edited by: 984466 on 2013-3-7 下午4:59
    Edited by: 984466 on 2013-3-8 上午12:51

    Hi,
    first of all, never post questions regarding internal JDeveloper builds (11.1.1.7 is not released to public) on this public forum. You are from Oracle and therefore have internal channels for this (note that using internal builds the problem could be with the build and not necessarily the code alone).
    To your question:
    I don't understand why
    +"2. returnPopupEvent and valueChangeEvent event will be handled by framework in one request, there is no chance for user's interaction."+
    doesn't work. If you set the "name" column component to autosubmit="true" then the listener fires as soon as you move out of the field and you can raise the alert. The current row in the binding points to the row you changed the name for and as such the value can be unset (the value change listener shows you the before and after value)
    Frank

  • Using selectedIndex of UIX choice element?

    I'm a bit embarrased that I can't figure this out - it's probably very simple.
    I have a messageChoice element on a UIX page, and I'd like to render the page differently based on which option is currently selected. To do this, I figure I can just use an event handler to maintain a value in the page state, tie the event handler to the messageChoice element, and use a switcher referencing that value on the page state to choose between the different sets of elements I want to render.
    I added a <primaryClientAction> element to the messageChoice element, a <fireAction> element to that, and tied the event to an event handler. All of this is correct, and I can verify that the event handler runs via a breakpoint and the debugger.
    I just can't figure out how to pass the selected index to the event handler! I assume you just add a parameter to the event, but I haven't the slightest clue how to reference the selectedIndex attribute of the messageChoice element from within the UIX page.
    I've been searching for hours! Not sure what's wrong with me, but I can't find the solution.
    A little help would be hugely appreciated =]
    -Matt

    Here are some examples that should help you. I have to go fix a high priority bug right now, so I can't mock up a choice example:
    <lovChoice name="lovChoiceName" prompt="hello" tip="this is a tip"
                                            destination="lovChoice_DemoDlg.uix" selectedValue="${sessionScope.userDataForLovChoice.favoriteVacation.location}">
      <contents   childData="${sessionScope.userDataForLovChoice.vacationSpots}">
      <option text="${uix.current.location}" value="${uix.current.location}"/>
      </contents>
    <primaryClientAction>
    <firePartialAction targets="selectedValueTextID selectedValueTextID2 selectedValueTextID3 lovChoiceID"
                                                             event="lovChoiceUpdate"/>
    </primaryClientAction>
    </lovChoice>and the event handler calls a java method:
        <event name="lovChoiceUpdate">
          <method class="oracle.cabo.servlet.demo.lovchoice.LovChoiceEvents"
                  method="handleLovChoiceUpdateEvent"/>
        </event>and this method gets the parameter:
       * handleLovChoiceUpdateEvent
       * @param context the current baja context
       * @param Page the current page
       * @param event the event that got us here
       * @return The event result containing all the parameters
      public static EventResult handleLovChoiceUpdateEvent(
        BajaContext bc,
        Page page,
        PageEvent event)
        HttpSession sess = bc.getServletRequest().getSession();
        UserData uData = _getUserData(sess);
        String selectedLocation = (String)event.getParameter("lovChoiceName");
        if (uData != null && selectedLocation != null)
          VacationSpot favVacation =  uData.findVacationSpot(selectedLocation);
          uData.setFavoriteVacation(favVacation);
        return null;
      }  To do it simpler, you can do something like this:
    In the following example the page property named "disclosed" is updated to the event source. Notice that data binding is supported.
    <set target="${uix.pageProp}"
    property="disclosed"
    value="${param.source}" />
    In the following example the session attribute identified by the event source is updated to the event name.
    <set target="${sessionScope}"
    property="${param.source}"
    value="${param.event}" />
    (I got this information from the UIX Element Reference).
    Here's an example I found for hide/show:
                 <hideShow id="hideShow-2" >
                  <boundAttribute name="disclosed" >
                   <comparison type="equals" >
                    <defaulting>
                     <dataObject select="hideShow-2"
                                 source="${uix.pageState}" />
                     <fixed text="hide" />
                    </defaulting>
                    <fixed text="show" />
                   </comparison>
                  </boundAttribute>
                  <contents>
                   <header text="Other Header">
                    <contents>
                     <header text="Other SubHeader"/>
                    </contents>
                   </header>
                  </contents>
                 </hideShow>
        <event name="hide show">
          <set
                 property="${param.source}" target="${uix.pageState}" value="${param.event}"/>
        </event>Jeanne

  • ADF UIX Tree Component

    Hi
    I have created ADF UIX Tree Component on my screen and i want to have button expand all / collapse all for my tree .
    Can i create event for expand all / collapse all ADF UIX Tree ?
    If i can ,could you please advise how i should to do ?
    Thanks

    Hi Daniel,
    Are there any one can tell me when the new ADF UIX
    demo based on uix 2.2 be released?I'm not sure when any sample applications will be released, but there is an ADF UIX tutorial available here:
    http://otn.oracle.com/products/jdev/collateral/tutorials/9050/adfuix_tut.html
    I want to know if we can get databind uix tree
    component (or other ui components) from ADF data
    action control which return dataobject and something
    else.I'm not sure about the tree component - I'll try to find out whether that is/will be supported. Once your data controls are available in the Data Control Palette, you can bind them to components in your UIX page by:
    1. Selecting the data control that you want to bind.
    2. Selecting a component type from the "Drop As" choice.
    3. Dragging the data control onto the UIX page.
    This process is illustrated in the tutorial above.
    Andy

  • Action / Item listener for Choice Component

    Hi,
    I currently have a choice component on my GUI and have it populated. I now want to detect if an item has been selected at any point in time and handle an event. I have been able to do this for buttons with ease using an Actionevent, but I am having some difficulty acheiving this for a choice component. Upon researching I have found an itemevent can be used but there are no examples of how to use this.
    Can anyone suggest how this can be acheieved.
    Thanks!

    Go back and look at the API, they list the Listeners specific to the Choice Class and all Listeners that are inherited.
    An ItemListener is used by implementing ItemListener
    public class MyClass implements ItemListener{
    // your code
      public void itemStateChanged(ItemEvent e){
        //your event handling code here
      }If you are implementing the ItemListener in your Choice class, then when you add it:
    addItemListener(this);If your ItemListener is implmeented in another class then after instantiation of your ItemListener Ojbect:
    myChoiceObject.addItemListener(myItemListenerObject);

Maybe you are looking for

  • Z77A-GD65 BIOS recovery

    I attempted to update the BIOS to rev A8 (previous version was A6) using M-Flash. The update failed and the board no longer boots from BIOS A Switching to BIOS B lets the board boot properly. How can I repair the A BIOS ? System Config is : MB: Z77A-

  • How To Edit Text?

    I just upgraded to EportPDF. With your subscription you can: Enjoy unlimited online conversions from PDF to Word (DOCX). Make scanned text editable. Maintain page, paragraph, and font attributes. Preserve tables, images, and multi-column text. Export

  • Reading the .rno files

    Experts, Here is my requirement. I am getting below menction file with extension (.RNO) XI needs to read that file and map to ORDERS05 Idoc send to R/3 system. this file includs digital certificates also. I see they are couple of tags in this file wh

  • IMac Maverick Upgrade - Printer Problems

    I recently upgraded to Maverick and now my HP color laser jet CM 1415fnw does not work.  I first tried calling HP and was on hold with them for a couple of hours and finally gave up.  So I am coming to Apple now to inquire if they know anything about

  • Brush size visibility

    When using Elements 11, the brush tool and clone tool only show crosshairs on the image, not the actual size of the brush selected.  What setting can I use to see the brush size while working?