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

Similar Messages

  • What is the add on where the tab history shows on a new tab

    <blockquote>Locking duplicate thread.
    Please continue here: [/questions//questions/748324]
    Thanks - c</blockquote>
    My computer crashed. I am now reconstructing Firefox. I had an add on where when opening a new tab, previous opened websites were listed (a photo of the page visited along with others in a listed to the right). What add on is this

    The Google Toolbar can do that.<br />
    http://www.google.com/support/toolbar/bin/answer.py?answer=115561 Web-browsing tools : Google new tab page and most visited websites - Toolbar Help
    *Speed Dial: https://addons.mozilla.org/firefox/addon/4810
    *Fast Dial: https://addons.mozilla.org/firefox/addon/5721

  • I have downloaded the Firefox Sync add on but when I select "add a device" it launces a help page which tells me to click "add a device" - endless circle!

    I have downloaded the Firefox Sync add on but when I select "add a device" it launces a help page which tells me to click "add a device" which is an endless circle!
    Any advice appreciated

    Sorry about that. The help pages have been updated for the new "Add a device" process in Firefox 4, but the add-on for Firefox 3.6 is still using an older, different process.
    You can download the Firefox 4 release candidate here and use the new "easy setup" process described in the help pages: http://firefox.com/rc
    Or if you prefer to stick with Firefox 3.6, then instead of clicking "Add a device" on your computer, press the "Connect" button on your phone or other device, then click on "I am not near my computer..." and enter your email address, password, and sync key. (If you don't know your sync key, see [[Where can I find my Firefox Sync Key?]])

  • Have a brand new dell. Not much on it but Premiere elements 13. Haven't used it for anything else - only 5 days old. I am in Premiere, add vid, render then poof. it says add media where those rendered files were. any help would be appreciated. thank you

    Have a brand new dell. Not much on it but Premiere elements 13. Haven't used it for anything else - only 5 days old. I am in Premiere, add vid, render then poof. it says add media where those rendered files were. any help would be appreciated. thank you

    bgar
    On what computer operating system is your Premiere Elements 13 running on?
    What are you (manually) or the project (automatically) setting as the project preset?
    (See Edit Menu/Project Settings/General and the readings for Editing Mode, Timebase, Frame Size,
    and Pixel Aspect Ratio (even if fields look grayed out).
    What are the properties of these source media, including file extension? The brand/model/settings of the camera that recorded the
    video may give us this information.
    When the source media hit the Timeline for the first time, is there an orange line over their content? Or is there
    no colored line and an orange line appears over them only after you have edited them?
    Please elaborate on "poof" after rendering the Timeline content by pressing the Render button above the Timeline content with the orange line over it.
    a. Media Offline displays?
    b. Other?
    ATR

  • I am trying to manage family sharing and I get a warning "invalid apple ID" that accounts can participate in one Family at a time.  How can I add my daughter when I can't even access my account?

    I am trying to manage family sharing and I get a warning "invalid apple ID"  accounts can participate in one Family at a time.  How can I add my daughter when I can't even access my account?

    Your best bet would be to try resetting the password to the account that you would like to use via iForgot
    Once you log in to that account change the email address to anything, it can even be fake its just a placeholder
    After you do that you will be free to change your old email address on your appleID to the new one that is now free to be used as it is no longer attached to the other account.

  • 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>))
    )

  • I am setting up a new iMac and need help syncing files to Dropbox.  On my old computer I had it set where when I saved a document, it was saved on my hard drive, as well as to a folder in Dropbox.  I can't remember how I set this up.  Any help?

    I am setting up a new iMac and need help syncing files to Dropbox.  On my old computer I had it set where when I saved a document, it was saved on my hard drive, as well as to a folder in Dropbox.  I can't remember how I set this up.  Any help?

    The way that Dropbox works is that it keeps a copy of all your files in your local Dropbox folder on your hard drive (which is, by default, directly under your home folder). Adding files to that folder will sync them to the Dropbox server.
    You do of course have to download the Dropbox application to enable this (download link at the top right of http://dropbox.com ).
    Matt

  • ST-PI Add-On needed when generating RFC's between 000 clients

    I was generating my RFC's as a part of Change Management configuration. I received 2 errors, stating that profiles (S_AI_SMD_E2E and S_USER_GRP) were not in the client and that i needed to import the current ST-PI add-on. When i ran SAINT, it showed that ST-PI was already inported and installed. However, when i try to add to profile to my Sol Man User, it states it does not exist.
    In SAINT it shows..
    ST-PI Release 2005_1_700 Level 0002 SAP Solution Tools Plug-In
    When i try to add either profile to my SOLMANSM3200 user that SAP created, it states that that profile "does not exist or is not active".
    Any help would be greatly appreciated!
    Margo

    Hello Margo,
    May I know the which system you are using for Central User Administration? If it is not the same System on which you are working, please select that user with Change mode in SU01, go to Roles, click on the button which says Text Comparision and also perform the same with Profiles tab as well. Then try to add.
    Hope it works.
    Cheers,
    Satish.

  • MAC OS Yosemite - CS6 - A while back, i did something to where when i open a file in photoshop, it no longer is one window, now it's two separete ones. one for the program itself, and another for the actual file how do it get it back to where it's all one

    - A while back, i did something to where when i open a file in photoshop, it no longer is one window, now it's two separete ones. one for the program itself, and another for the actual file how do it get it back to where it's all one window without having to be in full screen mode? I've managed to go some time like this, but right now it's just really annoying me. HELP!!!

    Just drag the small window to the top right below the toolbar, you'll see the area highlighted and when you drop it the file should dock.

  • FaceTime not working on my Macbook Pro. I am able to sign in successfully and add contacts.  When I try to call a contact with an iPhone, its connecting then fails.  When someone try to FaceTime me,I try to access but it says connecting then fail

    FaceTime not working on my Macbook Pro. I am able to sign in successfully and add contacts.  When I try to call a contact with an iPhone, it says connecting then fails by ending automatically.   When someone try to FaceTime me,I accept but it says connecting then fail.  I only have a MacBook Pro to FaceTime and not an iPhone.  I was informed that I should be able to FaceTime from my laptop via video call without an iPhone.
    Please advise.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    1. The purpose of this test is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in OS X 10.7 or later, then you can’t enable the Guest account. The "Guest User" login created by "Find My Mac" is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    2. Connect to a different network, such as a public Wi-Fi hotspot, and try again.

  • Should I add more memory when I update my iMac from 10.4.11 to Snow Leopard?

    Should I add more memory when I updaate my iMac from 10.4.11 to Snow Leopard?

    Actually, you have a Late 2006 model iMac that can use a Maximum of 3 GB of RAM.  See the link below.  So you can use a 1 GB and a 2GB modules. 
              http://support.apple.com/kb/SP28
    Message was edited by: Radiation Mac

  • I would like to use my deactiveted iPhone 3G for apps and music.  How do I add music?  When I synch with iTunes it won't add the selected playlists.

    I would like to use my deactiveted iPhone 3G for apps and music.  How do I add music?  When I synch with iTunes it won't add the selected playlists.

    See if this link offers any insight,
    Use iPhone as an iPod
    http://support.apple.com/kb/HT3406

  • How to add multiple table when creating add on using b1de

    Hi all,
    Plz help me
    How to add multiple table when creating add on using b1de.
    Thanks

    Hi dns_sap,
    Can you explain a little better what you are trying to accomplish? Is it to create UserTables and UserFields in the database, when the addon runs the first time?
    If so, you can use the following code
    Add User Table
            Try
                Dim lRetCode As Long
                Dim oUDT As SAPbobsCOM.UserTablesMD = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
                oUDT.TableName = TableName
                oUDT.TableDescription = TableDescription
                oUDT.TableType = TableType
                lRetCode = oUDT.Add
                '// Check for error when adding the Table: if lRetCode = 0 the table was created; if lRetCode = -2035 the table already exisits
                If lRetCode <> 0 Then
                    oApplication.MessageBox("Error: " & lRetCode.ToString & ", " & oCompany.GetLastErrorDescription)
                End If
            Catch ex As Exception
                oApplication.MessageBox(oCompany.GetLastErrorDescription)
            Finally
                System.Runtime.InteropServices.Marshal.ReleaseComObject(oUDT)
                oUDT = Nothing
                lRetCode = Nothing
                GC.Collect()
            End Try
    Add User Field
    Try
                Dim lRetCode As Long
                Dim oUDF As SAPbobsCOM.UserFieldsMD = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserFields)
                oUDF.TableName = TableName
                oUDF.Name = FieldName
                oUDF.Description = FieldDescription
                oUDF.Type = FieldType
                lRetCode = oUDF.Add
                '// Check for error when adding the field: if lRetCode = 0 the field was created; if lRetCode = -2035, the field already exists
                If lRetCode <> 0 Then
                    oApplication.MessageBox("Error: " & oCompany.GetLastErrorCode & ", " & oCompany.GetLastErrorDescription)
                End If
            Catch ex As Exception
                oApplication.MessageBox(oCompany.GetLastErrorDescription)
            Finally
                System.Runtime.InteropServices.Marshal.ReleaseComObject(oUDF)
                oUDF = Nothing
                lRetCode = Nothing
                GC.Collect()
            End Try
    Regards,
    Vítor Vieira

  • How to add one component when some action take place

    Hi,
    i created a GUI using Netbeans Ide, In that i want add a component when i click some button
    i showed it here see the diagram
    [click here to see|http://www.mediafire.com/imageview.php?quickkey=jtgzjrfenwm]
    my sample code
    public class ProcessFiles1 extends javax.swing.JFrame implements ActionListener,
                                                        PropertyChangeListener{
        private JProgressBar progressBar;
        / Creates new form ProcessFiles1 */*
    *    public ProcessFiles1() {*
    *        initComponents();*
    *    /** This method is called from within the constructor to
    *initialize the form.*
    WARNING: Do NOT modify this code. The content of this method is
    *always regenerated by the Form Editor.*
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {====================================>here i am not adding Progress bar
                                                                                                                             to GUI
            jToggleButton1 = new javax.swing.JToggleButton();
            jToggleButton2 = new javax.swing.JToggleButton();
            jComboBox1 = new javax.swing.JComboBox();
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            jComboBox2 = new javax.swing.JComboBox();
            jScrollPane1 = new javax.swing.JScrollPane();
            jTextArea1 = new javax.swing.JTextArea();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Admin@localhost");
            setIconImage(Toolkit.getDefaultToolkit().getImage("c:\\Logo.PNG"));
            jToggleButton1.setText("Select File");
            jToggleButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    FileChooser(evt);
            jToggleButton2.setText("Run Files");
            jToggleButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    addComp(evt);
            jComboBox1.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
            jComboBox1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jComboBox1ActionPerformed(evt);
            jLabel1.setText("Success");
            jLabel2.setText("Faild");
            progressBar = new JProgressBar(0, 100);
            progressBar.setValue(0);
            progressBar.setStringPainted(true);
            jComboBox2.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
            jTextArea1.setColumns(20);
            jTextArea1.setEditable(false);
            jTextArea1.setRows(5);
            jScrollPane1.setViewportView(jTextArea1);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());=================>from here i am adding components
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addGap(26, 26, 26)
                            .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 965, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(layout.createSequentialGroup()
                            .addContainerGap()
                            .addComponent(jToggleButton1)
                            .addGap(18, 18, 18)
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(jToggleButton2)
                                .addGroup(layout.createSequentialGroup()
                                    .addComponent(jLabel1)
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                                    .addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, 155, javax.swing.GroupLayout.PREFERRED_SIZE)
                                    .addGap(32, 32, 32)
                                    .addComponent(jLabel2)
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addComponent(jComboBox2, javax.swing.GroupLayout.PREFERRED_SIZE, 151, javax.swing.GroupLayout.PREFERRED_SIZE)))))
                    .addContainerGap(29, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jToggleButton1)
                        .addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel1)
                        .addComponent(jLabel2)
                        .addComponent(jComboBox2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addGap(26, 26, 26)
                    .addComponent(jToggleButton2)
                    .addGap(18, 18, 18)
                    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 583, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(20, Short.MAX_VALUE))
            pack();
        }// </editor-fold>
    private void addComp(java.awt.event.ActionEvent evt)---------------------------------------->when 'runfile' button clicked i am
                                                                                      trying to add progressbar component it is not adding
           layout.addLayoutComponent("Progress", progressBar);
           pack();
         }how can i add progressbar when runfile button clicked
    please any one focus some light on this
    Thanks in advance,
    Nagaraju.
    Edited by: uppala on Dec 18, 2009 11:33 AM

    Well, normally the code would be:
    panel.add( someComponent );
    panel.revalidate();But since you are using the IDE to generate your code you need to learn and understand how to use the GroupLayout and all its constraints to add the component.
    My advice is to get rid of the IDE generate code and create the GUI yourself.

  • How to add a user when Muse site is uploaded without Business Catalyst?

    Hello,
    I have uploaded a Muse site for my client on her own ftp server. But how can I add her as a "inbrowser editor", so that she can manage the site when needed? Or is it only possible to add a user when I upload the site on the Business Catalyst host?
    Thanks!

    Hi,
    The June 2014 update to Muse enables In-Browser Editing for Muse sites hosted with third-party (non-Adobe) providers.
    See https://helpx.adobe.com/muse/using/whats-new.html#In-browser%20Editing%20enhancements for specifics.
    Abhishek

Maybe you are looking for

  • How can I set up a 2 column layout in LiveCycle?

    Hi, I'm new to working with LiveCycle Designer. I'm using version 10.4, the OEM version bundled with SAP. Aside from being quite buggy, the capabilities seem pretty similar to LiveCycle Designer ES4, which I downloaded in a trial version. All of whic

  • Upgrade help for a newbie..please (PSE 3.0 to 7.0)

    I have just bought a new computer & am in the process of transferring everything over.  I am now using Vista. I have been using PSE 3.0 on my old computer, & would like to now upgrade to the newest edition of PSE.  I only used PSE for editing & not p

  • How to customize the layout of the partner selection pop-up in sales docs?

    When entering a sales order and mulitiple payers, for instance, are defined for the sold-to, a pop-up window will display allowing you to select the correct payer.  I've been told the layout of that screen can be changed and saved as a global default

  • PO cancellation for back dated process order

    Hi, I want to know how to cancel the confirmation of the process order which has been confirmed in the previous month,because when i go to cors option i get an error saying that the period has been closed.Kindly help Regards, Karthik Rai

  • Safari problems viewing javascript & more

    I am a PC user and need help configuring Safari to read our web site correctly. (Hopefully we don't have to rewrite the site). Safari doesn't read the javascript correctly and doesnt' respond to clicks on menu choices. I have similar problems with Fi