How Do We Add ROWSetListener To A ViewObject

I Would like to add a RowSetListener to my view object
named "CardView" (CardView which takes the debit and credit card
information), so that the listener is added to the view object
before it is used for any purpose. For this I have a introduced
addListener() method in the view itself as shown below.
My problem is that i do not know from where to instantiate this
addListener method which adds the listener to my view object.
Calling the method in the constructor results in the
ApplicationModuleCreateException. The only possible place from
where it did work was from the sourceChanged(EntityEvent event)
method over-ridden in my view but in this case the addListener
method is called several times and it is not desirable.
ANY HELP IS WELCOME. My Thanks to you in advance.
import oracle.jbo.server.ViewObjectImpl;
import oracle.jbo.RowIterator;
import oracle.jbo.Row;
import oracle.jbo.domain.Date;
import oracle.jbo.server.ViewRowSetImpl;
import oracle.jbo.server.EntityEvent;
import oracle.jbo.*;
public class CardViewImpl extends ViewObjectImpl
public CardViewImpl() { }
public void addListener()
System.out.println("Adding Listener to View .....");
this.addListener(new RowSetListener()
public void rangeRefreshed(RangeRefreshEvent event)
public void rangeScrolled(ScrollEvent event) { }
public void rowInserted(InsertEvent event) { }
public void rowDeleted(DeleteEvent event) { }
public void rowUpdated(UpdateEvent event)
System.out.println("Inside Listener's Update
Method");
          Row row = event.getRow();
          row.setAttribute("LastChangeDate", (new Date
()).getCurrentDate());
System.out.println("Exiting Listener's Update
Method");
public void navigated(NavigationEvent event) { }
System.out.println("Finished Adding Listener to
CardView .....");
}

You can also start a New Discussion, and if necessary, link to the FAQ Entries, as you did here, if you need those as an example, or to discuss those FAQ Entries.
Good luck,
Hunt

Similar Messages

  • How can you add a where clause using "OR" with applied ViewCriteria?

    [JDeveloper 10.1.3 SU4]
    [JHeadstart 10.1.3 build 78]
    I am using JHeadstart, but have a question probably more in the ADF area. On the JHeadstart forum I asked:
    "I am overriding JhsApplicationModule's advancedSearch in order to be able to search in childtables. I created transient attributes, display those in advanced search and in the overridden method I check if any of these are filled by the user and create a where clause like 'EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> AND <another column in childtable> LIKE '<value supplied by user>)'. I add this whereclause using ViewObject.setWhereClause.
    So far so good and it works. However, if the user selects 'Result matches any criteria', combining setWhereClause and the normal advancedSearch QueryByExample implementation using ViewCriteriaRow do not provide the desired result, since the ViewCriteria and the setWhereClause are AND-ed together, which is fine if the user selects the (default) "Results match all criteria" (everything is AND-ed) but not the "Result matches any criteria", since then every criterium is OR-ed together, except for the setwhereclause criteria and the set of ViewCriteriaRows, they are AND-ed.
    I looked if I could specify that a WhereClause will be OR-ed to existing applied ViewCriteria, but no luck. Do I have to rewrite also advancedSearch's ViewCriteria implementation and write an entire setWhereClause implementation to be able to "OR" every criterium? Or any other suggestions? Can I look at the entire Where clause and rewrite it (after applyCriteria and setWhereClause are called on the VO)?
    Toine"
    Sandra Muller (JHeadstart Team) told me today: "This sounds like a JDeveloper/ADF issue that is not related to JHeadstart. The question is: how can you add a where clause using "OR" if there are already one or more ViewCriteria applied?
    To simplify the test case, you could create a simple ADF BC test client class in a test Model project without JHeadstart (in the test class, use bc4jclient + Ctrl-Enter), in which you first apply a few ViewCriteriaRows to a View Object and also add a where clause.
    Can you please log a TAR at MetaLink ( http://metalink.oracle.com/ ), or ask this question at the JDeveloper forum at http://otn.oracle.com/discussionforums/jdev.html ? (This what I am doing now ;-))
    Thanks,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting"
    Anyone knowing the answer or am I asking for an enhancement?
    Toine

    Hi,
    Can you SET your whereclause as follows ?
    ('Y' = <isAnd>
    and EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> AND <another column in childtable> LIKE '<value supplied by user>))
    OR ('N' = <isAnd>
    AND EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> OR <another column in childtable> LIKE '<value supplied by user>))
    )

  • Add RowSetListener where/when ?

    I would like to add a RowSetListener to a VO in BC4J Tier as soon as the VO exists.
    Tried
    - the constructor of the VO
    - the create method of the VO
    - the constructor of the AM
    - the create method of the AM
    At all times I get the oracle.jbo.InvalidObjAccessException: JBO-25036
    if i overwrite the findViewObject method in the AM and do something like
    findViewObject(String name) {
    if("myVOname".equals(name)) {
    //add RowSetListener to VO
    Beside the fact that this is not a very elegant solution it will add a RowSetListener everytime i request the VO.
    So where and when to do something like this ?

    Here the code:
    public class VRechnungenBudHuelBupoViewImpl extends ViewObjectImpl {
    public void create() {
    super.create();
    addCalcListener();
    public void addCalcListener() {
    addListener(new RowSetListener(){
    public void navigated(NavigationEvent event) {
    // Invoked when the current-row designation changes.
    public void rangeRefreshed(RangeRefreshEvent event) {
    // Invoked when the range changes.
    calculateSums();
    public void rangeScrolled(ScrollEvent event) {
    // Invoked when the range is scrolled.
    public void rowDeleted(DeleteEvent event) {
    // Invoked when a row has been deleted.
    calculateSums();
    public void rowInserted(InsertEvent event) {
    // Invoked when a row has been inserted.
    calculateSums();
    public void rowUpdated(UpdateEvent event) {
    // Invoked when an attribute of the row has been changed.
    calculateSums();
    private void calculateSums() {
    _log.debug("Calculate l�uft ");
    Here the stacktrace:
    D:\jdev903\jdk\bin\javaw.exe -ojvm -classpath D:\jdev903\jdev\mywork\huel\huel_client\classes;D:\jdev903\jdev\mywork\huel\huel_bc4j\classes;D:\jdev903\jdev\mywork\huel\lib\log4j\log4j.jar;D:\jdev903\jdev\mywork\huel\lib\tablelayout\TableLayout.jar;D:\jdev903\jdev\mywork\huel\lib\drdoc\drdoc.jar;D:\jdev903\BC4J\jlib\bc4jui.jar;D:\jdev903\jlib\bigraphbean.jar;D:\jdev903\jlib\LW_PfjBean.jar;D:\jdev903\BC4J\lib\bc4jimdomains.jar;D:\jdev903\BC4J\jlib\bc4jimjui.jar;D:\jdev903\ord\jlib\ordim.jar;D:\jdev903\ord\jlib\ordhttp.jar;D:\jdev903\ord\jlib\jmf.jar;D:\jdev903\lib\xmlparserv2.jar;D:\jdev903\lib\xmlcomp.jar;D:\jdev903\jdev\lib\jdev-rt.jar;D:\jdev903\sqlj\lib\runtime12.jar;D:\jdev903\BC4J\lib\bc4jmt.jar;D:\jdev903\BC4J\lib\collections.jar;D:\jdev903\BC4J\lib\bc4jct.jar;D:\jdev903\lib\xmlparserv2.jar;D:\jdev903\jlib\jdev-cm.jar;D:\jdev903\j2ee\home\lib\jndi.jar;D:\jdev903\jdbc\lib\classes12.jar;D:\jdev903\jdbc\lib\nls_charset12.jar;D:\jdev903\BC4J\lib\bc4jimdomains.jar;D:\jdev903\ord\jlib\ordim.jar;D:\jdev903\ord\jlib\ordhttp.jar;D:\jdev903\jlib\jdev-cm.jar;D:\jdev903\BC4J\lib\bc4jdomorcl.jar;D:\jdev903\BC4J\jlib\bc4jdatum.jar -Dhttp.proxyHost=194.127.203.204 -Dhttp.proxyPort=8080 -Dhttp.nonProxyHosts=194.127.203.23 de.mypackage.huel.HuelApp -Djbo.debugoutput=console
    [INFO ] ApplicationManager: Look&Feel: The Java(tm) Look and Feel
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.common.ampool.ApplicationPoolException, msg=JBO-30003: The application pool (RootAppModuleLocal) failed to checkout an application module due to the following exception:
         void oracle.jbo.JboException.<init>(java.lang.Throwable)
              JboException.java:344
         oracle.jbo.ApplicationModule oracle.jbo.client.Configuration.createRootApplicationModuleFromConfig(java.lang.String, oracle.jbo.common.ampool.EnvInfoProvider)
              Configuration.java:1144
         oracle.jbo.uicli.binding.JUApplication oracle.jbo.uicli.mom.JUMetaObjectManager.createApplicationObject(java.lang.String, java.util.Properties, oracle.jbo.common.ampool.EnvInfoProvider)
              JUMetaObjectManager.java:386
         oracle.jbo.uicli.binding.JUApplication de.mypackage.huel.application.JUApplicationProvider.getRootJUApplication()
              JUApplicationProvider.java:44
         void de.mypackage.huel.login.LoginDialogManager.doConnect()
              LoginDialogManager.java:165
         void de.mypackage.huel.login.LoginDialogManager$2.actionPerformed(java.awt.event.ActionEvent)
              LoginDialogManager.java:99
         void javax.swing.AbstractButton.fireActionPerformed(java.awt.event.ActionEvent)
              AbstractButton.java:1450
         void javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(java.awt.event.ActionEvent)
              AbstractButton.java:1504
         void javax.swing.DefaultButtonModel.fireActionPerformed(java.awt.event.ActionEvent)
              DefaultButtonModel.java:378
         void javax.swing.DefaultButtonModel.setPressed(boolean)
              DefaultButtonModel.java:250
         void javax.swing.plaf.basic.BasicButtonListener.mouseReleased(java.awt.event.MouseEvent)
              BasicButtonListener.java:216
         void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)
              Component.java:3715
         void java.awt.Component.processEvent(java.awt.AWTEvent)
              Component.java:3544
         void java.awt.Container.processEvent(java.awt.AWTEvent)
              Container.java:1164
         void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)
              Component.java:2593
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
              Container.java:1213
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
              Component.java:2497
         void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)
              Container.java:2451
         boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)
              Container.java:2216
         boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)
              Container.java:2125
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
              Container.java:1200
         void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)
              Window.java:926
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
              Component.java:2497
         void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
              EventQueue.java:339
         boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
              EventDispatchThread.java:131
         void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
              EventDispatchThread.java:98
         void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
              EventDispatchThread.java:93
         void java.awt.EventDispatchThread.run()
              EventDispatchThread.java:85
    ## Detail 0 ##
    JBO-30003: The application pool (RootAppModuleLocal) failed to checkout an application module due to the following exception:
    oracle.jbo.InvalidObjAccessException: JBO-25036: An invalid object operation was invoked on type View Object with name VRechnungenBudHuelBupoView
         void oracle.jbo.server.ViewObjectImpl.addRowSet(oracle.jbo.server.ViewRowSetImpl)
              ViewObjectImpl.java:6014
         void oracle.jbo.server.ViewRowSetImpl.<init>(oracle.jbo.server.ViewObjectImpl, java.lang.String, oracle.jbo.server.ViewRowSetIteratorImpl, boolean)
              ViewRowSetImpl.java:215
         oracle.jbo.server.ViewRowSetImpl oracle.jbo.server.ViewObjectImpl.createViewRowSet(java.lang.String, boolean)
              ViewObjectImpl.java:5999
         oracle.jbo.server.ViewRowSetImpl oracle.jbo.server.ViewObjectImpl.getDefaultRowSet()
              ViewObjectImpl.java:967
         void oracle.jbo.server.ViewObjectImpl.addListener(java.lang.Object)
              ViewObjectImpl.java:5444
         void de.mypackage.huel.bc4j.access.U03.VRechnungenBudHuelBupoViewImpl.addCalcListener()
              VRechnungenBudHuelBupoViewImpl.java:31
         void de.mypackage.huel.bc4j.access.U03.VRechnungenBudHuelBupoViewImpl.create()
              VRechnungenBudHuelBupoViewImpl.java:26
         oracle.jbo.ViewObject oracle.jbo.server.ApplicationModuleImpl.createViewObject(java.lang.String, oracle.jbo.server.ViewDefImpl)
              ApplicationModuleImpl.java:2447
         oracle.jbo.ViewObject oracle.jbo.server.ApplicationModuleImpl.createViewObject(java.lang.String, java.lang.String)
              ApplicationModuleImpl.java:2493
         void oracle.jbo.server.ApplicationModuleDefImpl.loadComponents(oracle.jbo.server.ApplicationModuleImpl)
              ApplicationModuleDefImpl.java:357
         oracle.jbo.server.ApplicationModuleImpl oracle.jbo.server.ApplicationModuleImpl.createApplicationModuleImpl(java.lang.String, oracle.jbo.server.ApplicationModuleDefImpl)
              ApplicationModuleImpl.java:2641
         oracle.jbo.ApplicationModule oracle.jbo.server.ApplicationModuleImpl.createApplicationModule(java.lang.String, java.lang.String)
              ApplicationModuleImpl.java:792
         void oracle.jbo.server.ApplicationModuleDefImpl.loadComponents(oracle.jbo.server.ApplicationModuleImpl)
              ApplicationModuleDefImpl.java:440
         oracle.jbo.server.ApplicationModuleImpl oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(java.lang.String, oracle.jbo.Session)
              ApplicationModuleImpl.java:316
         oracle.jbo.ApplicationModule oracle.jbo.server.ApplicationModuleHomeImpl.create()
              ApplicationModuleHomeImpl.java:92
         oracle.jbo.ApplicationModule oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(java.util.Hashtable)
              DefaultConnectionStrategy.java:135
         oracle.jbo.ApplicationModule oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(oracle.jbo.common.ampool.SessionCookie, oracle.jbo.common.ampool.EnvInfoProvider)
              DefaultConnectionStrategy.java:76
         java.lang.Object oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(java.util.Properties)
              ApplicationPoolImpl.java:1767
         java.lang.Object oracle.jbo.pool.ResourcePool.createResource(java.util.Properties)
              ResourcePool.java:315
         oracle.jbo.ApplicationModule oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(oracle.jbo.common.ampool.SessionCookie)
              ApplicationPoolImpl.java:1394
         oracle.jbo.ApplicationModule oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(oracle.jbo.common.ampool.SessionCookie, boolean)
              ApplicationPoolImpl.java:2062
         oracle.jbo.ApplicationModule oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(boolean, long)
              SessionCookieImpl.java:398
         oracle.jbo.ApplicationModule oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(boolean)
              SessionCookieImpl.java:369
         oracle.jbo.ApplicationModule oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule()
              SessionCookieImpl.java:364
         oracle.jbo.ApplicationModule oracle.jbo.client.Configuration.createRootApplicationModuleFromConfig(java.lang.String, oracle.jbo.common.ampool.EnvInfoProvider)
              Configuration.java:1135
         oracle.jbo.uicli.binding.JUApplication oracle.jbo.uicli.mom.JUMetaObjectManager.createApplicationObject(java.lang.String, java.util.Properties, oracle.jbo.common.ampool.EnvInfoProvider)
              JUMetaObjectManager.java:386
         oracle.jbo.uicli.binding.JUApplication de.mypackage.huel.application.JUApplicationProvider.getRootJUApplication()
              JUApplicationProvider.java:44
         void de.mypackage.huel.login.LoginDialogManager.doConnect()
              LoginDialogManager.java:165
         void de.mypackage.huel.login.LoginDialogManager$2.actionPerformed(java.awt.event.ActionEvent)
              LoginDialogManager.java:99
         void javax.swing.AbstractButton.fireActionPerformed(java.awt.event.ActionEvent)
              AbstractButton.java:1450
         void javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(java.awt.event.ActionEvent)
              AbstractButton.java:1504
         void javax.swing.DefaultButtonModel.fireActionPerformed(java.awt.event.ActionEvent)
              DefaultButtonModel.java:378
         void javax.swing.DefaultButtonModel.setPressed(boolean)
              DefaultButtonModel.java:250
         void javax.swing.plaf.basic.BasicButtonListener.mouseReleased(java.awt.event.MouseEvent)
              BasicButtonListener.java:216
         void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)
              Component.java:3715
         void java.awt.Component.processEvent(java.awt.AWTEvent)
              Component.java:3544
         void java.awt.Container.processEvent(java.awt.AWTEvent)
              Container.java:1164
         void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)
              Component.java:2593
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
              Container.java:1213
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
              Component.java:2497
         void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)
              Container.java:2451
         boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)
              Container.java:2216
         boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)
              Container.java:2125
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
              Container.java:1200
         void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)
              Window.java:926
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
              Component.java:2497
         void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
              EventQueue.java:339
         boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
              EventDispatchThread.java:131
         void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
              EventDispatchThread.java:98
         void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
              EventDispatchThread.java:93
         void java.awt.EventDispatchThread.run()
              EventDispatchThread.java:85
    [ERROR] ExceptionProzessor: Exception occurred: java.lang.Exception: JBO-29000: Unexpected exception caught: oracle.jbo.common.ampool.ApplicationPoolException, msg=JBO-30003: The application pool (RootAppModuleLocal) failed to checkout an application module due to the following exception:
    java.lang.Exception: JBO-29000: Unexpected exception caught: oracle.jbo.common.ampool.ApplicationPoolException, msg=JBO-30003: The application pool (RootAppModuleLocal) failed to checkout an application module due to the following exception:
         void de.mypackage.huel.errorhandling.mypackageErrorHandler.handle(java.lang.Throwable)
              mypackageErrorHandler.java:38
         java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])
              native code
         boolean java.awt.EventDispatchThread.handleException(java.lang.Throwable)
              EventDispatchThread.java:222
         boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
              EventDispatchThread.java:141
         void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
              EventDispatchThread.java:98
         void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
              EventDispatchThread.java:93
         void java.awt.EventDispatchThread.run()
              EventDispatchThread.java:85

  • How do I add URI web link with custom tooltip like "CLICK HERE TO UPDATE" instead of URI web link in tooltip.

    How do I add URI web link with custom tooltip like "CLICK HERE TO UPDATE" instead of URI web link in tooltip.

    You've probably found an answer to this by now, but I think this has been addressed in another forum -- The link below suggested using a button and adding the tooltip to the button. 
    https://forums.adobe.com/thread/304974?start=0&tstart=0
    Sounds like it would work but I haven't actually tried it. 
    Good luck~!

  • How do i add type kit fonts to muse web site

    how do I +add type kit fonts to muse website

    Hi.
    Check this video, might be helpful
    Let me know if you have any questions

  • How can I add more than one same spry menu (eg. collapsible menu)  with in different styles (font size, color, background, etc) on current page?

    How can I add more than one same spry menu (eg. collapsible menu)  with in different styles (font size, color, background, etc) on current page?

    Hi Nancy,
    This screenshot was only for imagination. A part of the code (not all) is below.  In the code there are some background images but they are not seem in live mode.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <link href="css/my_site.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css"/>
    <link href="SpryAssets/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryCollapsiblePanel.js" type="text/javascript"></script>
    <style>
    #CollapsiblePanel1 .CollapsiblePanelOpen .CollapsiblePanelTab {
        background-color: #003366;
        font-size: 18px;
        line-height: 52px;
        color: #FFF;
    #CollapsiblePanel1 .CollapsiblePanelTabHover .CollapsiblePanelTab {
        background-color: #003366;
        color: #FFF;
        text-shadow: 1px 1px #000;
        font-weight: bold;
        line-height: 52px;
    #CollapsiblePanel1 .CollapsiblePanelClosed .CollapsiblePanelTab  {
        background-color: #C3CFDF;
        border-radius: 5px 5px 0px 0px;
        color: #999
        text-shadow: 1px 1px #000;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: bold;
        line-height: 52px;
    #CollapsiblePanel2 .CollapsiblePanelOpen .CollapsiblePanelTab {
        background-image: url(images/international.jpg);
        background-repeat: no-repeat;
        font-size: 18px;
        line-height: 52px;
        color: #FFF;
    #CollapsiblePanel2 .CollapsiblePanelTabHover .CollapsiblePanelTab {
        background-color: #003366;
        color: #FFF;
        text-shadow: 1px 1px #000;
        font-weight: bold;
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel2 .CollapsiblePanelClosed .CollapsiblePanelTab  {
        background-color: #C3CFDF;
        border-radius: 5px 5px 0px 0px;
        color: #999
        text-shadow: 1px 1px #000;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: bold;
        background-image: url(images/TR_Gray2-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel2 .CollapsiblePanelContent {
        background-color: blue;
    #CollapsiblePanel3 .CollapsiblePanelOpen .CollapsiblePanelTab {
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        font-size: 18px;
        line-height: 52px;
        color: #FFF;
    #CollapsiblePanel3 .CollapsiblePanelTabHover .CollapsiblePanelTab {
        background-color: #003366;
        color: #FFF;
        text-shadow: 1px 1px #000;
        font-weight: bold;
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel3 .CollapsiblePanelClosed .CollapsiblePanelTab  {
        background-color: #C3CFDF;
        border-radius: 5px 5px 0px 0px;
        color: #999
        text-shadow: 1px 1px #000;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: bold;
        background-image: url(images/TR_Gray2-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel4 .CollapsiblePanelOpen .CollapsiblePanelTab {
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        font-size: 18px;
        line-height: 52px;
        color: #FFF;
    #CollapsiblePanel4 .CollapsiblePanelTabHover .CollapsiblePanelTab {
        background-color: #003366;
        color: #FFF;
        text-shadow: 1px 1px #000;
        font-weight: bold;
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel4 .CollapsiblePanelClosed .CollapsiblePanelTab  {
        background-color: #C3CFDF;
        border-radius: 5px 5px 0px 0px;
        color: #999
        text-shadow: 1px 1px #000;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: bold;
        background-image: url(images/TR_Gray2-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel5 .CollapsiblePanelOpen .CollapsiblePanelTab {
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        font-size: 18px;
        line-height: 52px;
        color: #FFF;
    #CollapsiblePanel5 .CollapsiblePanelTabHover .CollapsiblePanelTab {
        background-color: #003366;
        color: #FFF;
        text-shadow: 1px 1px #000;
        font-weight: bold;
        background-image: url(images/TR_Col-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    #CollapsiblePanel5 .CollapsiblePanelClosed .CollapsiblePanelTab  {
        background-color: #C3CFDF;
        border-radius: 5px 5px 0px 0px;
        color: #999
        text-shadow: 1px 1px #000;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: bold;
        background-image: url(images/TR_Gray2-WEB.png);
        background-repeat: no-repeat;
        line-height: 52px;
    </style>

  • How do I add multiple apple id's to one account

    How do I add multiple Apple id's to one account for billing and Icloud use?

    You don't. You can't combine Apple IDs.

  • HT201342 How can I add an e-mail address to my existing icloud addresses?  I currently only use one and I would like to ad two more?

    How can I add an e-mail address to my existing icloud account?  I curently only use one of the three.

    Each iCloud account only has a single iCloud account.  If you want, you can add up to 3 alias addresses that will receive email in the same iCloud inbox, as explained here: http://support.apple.com/kb/PH2622.

  • How can I add amazon to Apple TV?

    I am a new Apple TV user. So far I am impressed and like it a lot. However I would like to use the Amazon Prime and I have yet to find it. How can I add it to my Apple TV?

    You cannot add apps to Apple TV. If you have an IOS device you can AirPlay to stream using the app from there

  • HT201269 How do I add another contact / recipient to an SMS. Easy in Android, but I can't see how on my 5s.  Have to create a group on my Macbook Pro (OS 9.1), but it's not getting synced via usb. I'd prefer not to use cloud.

    How do I add a contact / recipient to an SMS on iPhone 5s?  It's easy on Android, but I've not sussed it on the iPhone - can't create a group etc.  Tried to create a group on Mac, but it either doesn't exist or won't sync to the phone with usb, nor will other contact details created on Mac.  I'd rather not use the cloud.  I'm sure contacts used to sync to my old iPod touch in Snow Leopard.
    Is it not more logical to have the phone as the main source of this sort of data?  We're more likely to update on a device we carry all the time surely?
    Please advise. Thank you

    Hey Cornish wrinkly,
    It sounds like you want to create a group message. You can read about group messaging on the iPhone here:
    iOS: Understanding group messaging
    http://support.apple.com/kb/HT5760
    Welcome to Apple Support Communities!
    Regards,
    Delgadoh

  • How do I add multiple tickets under the same confirmation number from the American Airlines app to Passbook?

    I have a confirmation number from American Airlines for a flight with my family all under my name and for some reason I cannot add all of our tickets to Passbook. To clarify, I went to the American Airlines app and put in the confirmation number along with my name which pulled up my boarding pass only. Although I was able to add this boarding pass to Passbook, I was not able to add any of the other boarding passes for my children to Passbook that should have also been under the flight reservation. In fact I couldn't even see them in the American Airlines app. I tried to use their names and the same confirmation number but nothing happened, and nothing else seems to be working. How can I add all of these boarding passes to my Passbook?

    Fair enough.
    I started doing this before unlimited data and emails on phones was a common commodity, on my Samsung Blackjack.
    I then continued it due to its convenience. My only counter argument is this:
    Even when emails are set to immediately push, I am always notified earlier by this forwarding message (sometimes by several minutes/hours due to the fact that it is not dependent on my being connected to 4G or wifi to receive it.
    Also, to contradict snozdop's point that both methods use data and battery, I say this - when I use the forwarding method, the information comes in a pure text format and therefore uses considerably less information than an HTML and CSS rich email, with embedded images and such -also, unlimited text messages aids curve costs.
    I will, however, give this method a go. In any case, a solution to my original question would still be greatly appreciated.
    Thanks guys.

  • How do I add multiple contacts to a group?

    How do I add multiple contacts to a group on my Ipad?

    See if this thread helps.
    https://discussions.apple.com/thread/4114588
    Matt

  • How do i add a company logo to my email signature on my mac book pro

    how do i add a company logo to my email signature on my mac book pro

    I would like to know how to do this as well. All I'm able to do is add the link, but not the button. My colleague has done this on his Outlook on his HP. I'm not sure why this is so difficult!

  • How do I add a printer connected to another iMac on the network to my printer list?

    How do I add an Epson printer connected to an iMac on the network to the printer list on my MacBook Pro? I cannot get it to show up in the list for printers to add.

    That only works if the printer is itself a network printer. You can't do it if it is directly connected to another computer on the network unless it is configured to be a Shared Printer on the other computer.

  • How do i add multiple email addresses to my calendar

    How do I add multiple email addresses to my calendar on my iphone

    You can create an email alias at the mail feature at iCloud.com

Maybe you are looking for

  • Entry Channel setup for multiple company codes

    Hello, I have a question regarding the entry channel setup (for external requirements in the Plan-Driven Procurement scenario) In previous implementations, I 've created an entry channel below each company code (as the documentation says it should be

  • Hi, I don't know how to find a specific security patch to apply to my Oracle database version to fix a vulnerability

    Hi, I don't know how to find a specific security patch to apply to my Oracle database version 11.2.0.2.0 (on windows server 2003 32 bits) to fix the following vulnerability: Risk: High Application: oracle_tnslsnr Port: 1521 Protocol: tcp Synopsis: It

  • My devices no longer show up in iTunes on my new computer.

    Neither one of my devices (iPhone 5 and iPad 3) will show up in my iTunes on my new Asus Windows 8.1 computer. They show up as devices on This PC in Windows, but not on iTunes. I've uninstalled and reinstalled everything. I've stopped and started the

  • Itunes songs skipping

    Why do certain songs that are purchased from the Itunes store skip on the Ipod classic? About 1/3 of all my songs that I have purchased through Itunes skip at some point during the song. Some at 5 seconds, some at 40 seconds, etc... I Can not convert

  • Trouble with Illustrator CS5 Trial Installation on Mac

    Hi Everyone, I am trying to install the trial version of Illustrator CS5. I am using the Adobe Download Assistant and it has produced an error. The error is number 4960 and it says that the disk image for Illustrator could not be opened. If anyone co