Insert a character does not work in DW 2014.1.1 in Live Mode

When I try to insert a character by using Insert, character, all the choices are grayed out in direct mode, although I can insert characters with no problems in Design view. I use the Windows of DW 2014.1.1 version.

Is that what this destiny, a bug in the program, or a particular problem in my installation?

This is most likely an oversight.  The development of DW team has made improvements to edition Live View, but it is still not perfect.  Things like inserting characters, spell checks, working with templates, etc... always requires that you are in Design mode.  Unfortunately, Fashion Design is not an option when you work with FGLayouts without a workaround.

Nancy O.

Tags: Dreamweaver

Similar Questions

  • Cannot install adobe creative suite 6, do not load and install further when the second cd is inserted (zip also does not work)

    Cannot install adobe creative suite 6, do not load and install further when the second cd is inserted

    This question is unanswered.

    artistichooves artistichooves February 6, 2014 06:31

    I've only had 3 programs installed with the two cd I got with my adobe creative suite 6 (edition education, student and teacher)

    It didn't load any further when I insert the second cd. (tried several times) on my windows 8.1

    I got a license number, but it does not work on the creative cloud

    I tried to download the zip file, but it did not work

    I have ragequited (sorry)

    and now I want to try again.

    -J' have the license but I can't use my cd or download the zip

    -are there a cd I can buy again or something?

    It seems that my series works more :/

  • After that insert update trigger does not work properly

    Hello experts!

    I created an insert/update trigger after and what strikes me is that it does not work as expected.
    The trigger starts a procedure that performs an insert in a second case of changing values table triggered table ("my_table").

    The problem is that in my second table values, which are correlated to the "my_table", are not changed by the correct values immediately. The trails of the trigger and insert!

    I need to update two times to values appear in my second table. Then only the data of the first update will be inserted in the second recital to table the table parent ("my_table") held the most recent values.

    Do you have an idea what could be the problem?
    create or replace
    trigger myscheme.after_update_insert_set_tw
     after update or insert
      on myscheme.my_table
      for each row
      
    declare 
    
    begin
    
     pr_my_table_tw_sync_sk(:new.lng_falle, :new.int_fallennummer, :new.lng_schaedling, :new.objectid);
    
    
    end;
    Brgds,

    SEB

    Remove the pragma autonomous_transaction and validation of your relaxation. This might be the reason. The transaction autonoumous cant properly consider the values of the current transaction (which is not engaged yet).

    This is not logically (if the upgrade fails or is rolled at the time you do not want the inserted row).

    If you then get a problem because the mutation of tables, you will need a different solution: an autonoumous transaction is not the right solution to workaround.

  • IncrediMail Plus does not work in Windows 8 PRO, even in compatibility mode

    Since the installation of Windows 8 PRO my incredimail Plus program e-mail does not work even in different compatibility modes.

    IncrediMail (Perion) technical support is worse than useless and aren't even not respond to requests for advice or assistance

    I found a post on their forums date dated 1/12 Nov: http://forums.incredimail.com/viewtopic.php?t=11167#p42981 indicating

    Please note that IncrediMail 2.5 version is now fully compatible with Windows 8.

    Note: This version uses IMAP technology so that you can experience problems when importing the old backup files.

    No mention of how to get around that.

  • Why is the key comma or insert the command does not work in Premiere Pro?

    pressing comma does not put the video in the timeline panel as it should and even with by clicking Insert icon

    You probably forgot to patch the track.

  • Tecra A9 - network does not work after wake up from the sleep/hibernation mode

    I have TECRA A9 and it works fine, but I found that when computer portable GB extended standby/sleep mode and after the return to work on the laptop to the network not working not.
    Keep it light, but there is no network and to solve it, I need to restart the laptop.

    Any help please.

    Kind regards.

    This is a known issue so take a look at this site:
    http://APS2.toshiba-tro.de/KB0/TSB8902FC0000R01.htm

    Updated the BIOS, and then it will work.

  • Insertion trigger after (does not work)

    SQL> DESC MN_MDV_DET
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     MDV_NO                                             VARCHAR2(10)
     MDV_DATE                                           DATE
     ITEM_NO                                            VARCHAR2(10)
     ITEM_DESCP                                         VARCHAR2(100)
     UOM                                                VARCHAR2(10)
     ITEM_QTY                                           NUMBER(6)
     BAL_QTY                                            NUMBER(6)
     REMARKS                                            VARCHAR2(30)
     ITEM_STAT                                          NUMBER(1)
     GVN_QTY                                            NUMBER(6)
     MRF_NO                                             VARCHAR2(10)
     MRF_DATE                                           DATE
    
    SQL> DESC MN_ITEM_PNDNG_ISU
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     MRF_NO                                             VARCHAR2(10)
     MRF_DATE                                           DATE
     MDV_NO                                             VARCHAR2(10)
     MDV_DATE                                           DATE
     ITEM_NO                                            VARCHAR2(10)
     ITEM_DESCP                                         VARCHAR2(100)
     UOM                                                VARCHAR2(10)
     REQ_QTY                                            NUMBER(6)
     GVN_QTY                                            NUMBER(6)
     BAL_QTY                                            NUMBER(6)
     PNDNG_DATE                                         DATE
     REMARKS                                            VARCHAR2(60)
    SQL> SELECT MDV_NO,MDV_DATE,ITEM_NO FROM MN_MDV_DET WHERE ITEM_STAT=0;
    
    MDV_NO     MDV_DATE  ITEM_NO                                                    
    ---------- --------- ----------                                                 
    DV-1001    28-JUL-12 1010143                                                    
    
    SQL> SELECT MDV_NO,MDV_DATE,ITEM_NO FROM MN_MDV_DET WHERE ITEM_STAT=1;
    
    MDV_NO     MDV_DATE  ITEM_NO                                                    
    ---------- --------- ----------                                                 
    DV-1001    28-JUL-12 1010138                                                    
    DV-1001    28-JUL-12 1010100                                                    
    I'm writing the code block block of details and waiting for inserting record on MN_ITEM_PNDNG_ISU below
    but when I put the condition WHERE it was not inserting record in MN_ITEM_PNDNG_ISU and when I remove the WHERE Condition it works smoothly. something wrong in my trigger for insertion after?

    I want to insert records on MN_ITEM_PNDNG_ISU where ITEM_STAT = 0 or NULL only. as above query run in SQL Prompt.
    INSERT INTO MN_ITEM_PNDNG_ISU
    (MRF_NO      ,   
    MRF_DATE     ,  
    MDV_NO       ,  
    MDV_DATE     ,  
    ITEM_NO      ,  
    ITEM_DESCP   ,  
    UOM          ,  
    REQ_QTY      ,  
    GVN_QTY      ,  
    BAL_QTY      ,  
    PNDNG_DATE   ,  
    REMARKS      )
    SELECT
    :MN_MDV_DET.MRF_NO,  
    :MN_MDV_DET.MRF_DATE,
    :MN_MDV_DET.MDV_NO,
    :MN_MDV_DET.MDV_DATE,
    :MN_MDV_DET.ITEM_NO,
    :MN_MDV_DET.ITEM_DESCP,
    :MN_MDV_DET.UOM,
    :MN_MDV_DET.ITEM_QTY,
    :MN_MDV_DET.GVN_QTY,
    :MN_MDV_DET.BAL_QTY,
    SYSDATE,
    :MN_MDV_DET.REMARKS FROM MN_MDV_DET WHERE :MN_MDV_DET.ITEM_QTY=0;
    Concerning

    Hello

    Try:

    If nvl(:MN_MDV_DET.) ITEM_STAT, 0) = 0 then
    INSERT INTO MN_ITEM_PNDNG_ISU
    (MRF_NO,
    MRF_DATE,
    MDV_NO,
    MDV_DATE,
    ITEM_NO,
    ITEM_DESCP,
    UNIT OF MEASURE,
    REQ_QTY,
    GVN_QTY,
    BAL_QTY,
    PNDNG_DATE,
    REMARKS)
    Values)
    : MN_MDV_DET. MRF_NO,
    : MN_MDV_DET. MRF_DATE,
    : MN_MDV_DET. MDV_NO,
    : MN_MDV_DET. MDV_DATE,
    : MN_MDV_DET. ITEM_NO,
    : MN_MDV_DET. ITEM_DESCP,
    : MN_MDV_DET. UNIT OF MEASURE,
    : MN_MDV_DET. ITEM_QTY,
    : MN_MDV_DET. GVN_QTY,
    : MN_MDV_DET. BAL_QTY,
    SYSDATE,
    : MN_MDV_DET. REMARKS);

    end if;

  • Drawbot example does not work on AE 2014

    Hi all

    I have a rather strange question when executing the example of the CCU.

    Whenever I use the SDK of AE 2014, all right.

    Whenever I use the 2015 AE SDK example works fine for AE/2015.3 2015 but hangs on AE 2014.

    Dig a little in the code that I saw that the problem occurs when drawbot suite is acquired.

    In the function "AEFX_AcquireDrawbotSuites" in the AEFX_SuiteHelper.c, the third acquisition fails with the following error: PF_Err_BAD_CALLBACK_PARAM

    Any ideas why that may happen?

    (AEFX_AcquireDrawbotSuites) PF_ErrPF_InData* in_data,/ * > > * /.
    PF_OutData* out_data,/ * > > * /.
    DRAWBOT_Suites* suitesP)/ < * < * /.

    {

    PF_ErrERR = PF_Err_NONE;
    If (suitesP == NULL) {}
    out_data-> out_flags | = PF_OutFlag_DISPLAY_ERROR_MESSAGE;

    PF_SPRINTF (out_data-> return_msg, "more NULL pointer passed to AEFX_AcquireDrawbotSuites");

    ERR = PF_Err_UNRECOGNIZED_PARAM_TYPE;
    }

    If (! err) {}
    ERR = AEFX_AcquireSuite (in_data, out_data, kDRAWBOT_DrawSuite, kDRAWBOT_DrawSuite_VersionCurrent, NULL, (void *) & suitesP-> drawbot_suiteP);
    }
    If (! err) {}
    ERR = AEFX_AcquireSuite (in_data, out_data, kDRAWBOT_SupplierSuite, kDRAWBOT_SupplierSuite_VersionCurrent, NULL, (void *) & suitesP-> supplier_suiteP);
    }
    If (! err) {}
    ERR = AEFX_AcquireSuite (in_data, out_data, kDRAWBOT_SurfaceSuite, kDRAWBOT_SurfaceSuite_VersionCurrent, NULL, (void *) & suitesP-> surface_suiteP);
    }
    If (! err) {}
    ERR = AEFX_AcquireSuite (in_data, out_data, kDRAWBOT_PathSuite, kDRAWBOT_PathSuite_VersionCurrent, NULL, (void *) & suitesP-> path_suiteP);
    }
    return err;

    }

    This is because the kDRAWBOT_SurfaceSuite_VersionCurrent macro points to a version of the suite of surface which is not supported in AE2014. I had this problem and found the best way to get around it is to edit the AEFX_SuiteHelper.c file directly, replacing the kDRAWBOT_SurfaceSuite_Version1, then:

    ERR = AEFX_AcquireSuite (in_data, out_data, kDRAWBOT_SurfaceSuite, kDRAWBOT_SurfaceSuite_Version1, NULL, (void *) & suitesP-> surface_suiteP);

    You can change the place DrawbotSuite.h, by changing the macro kDRAWBOT_SurfaceSuite_VersionCurrent to kDRAWBOT_SurfaceSuite_Version1 and leaving AEFX_SuiteHelper.c as it was.

  • The "Reply address" field does not work under the account properties in Windows Live Mail

    I use Windows Live Mail on Windows Vista Home Premium system to access three e-mail accounts that I administer.  I would like to change the default reply address in the accounts to use my address E-mail UKU (that is, when I send a message to any of the accounts, the beneficiaries of the default response is sent to my account UKU).

    All of my system messages via a different service provider (Virgin) and I discovered that the "Reply To" address in the header is always to my Virgin account.  I entered all my account settings and entered the UKU address that must seek answers (accounts-properties-reply address), but this setting doesn't seem to work.

    Please advise...

    Kind regards

    Skipper Mike

    E-mail: * address email is removed from the privacy *

    Hello Mike-TVEng,

    The best place to ask your question of Windows Live is inside Windows Live help forums. Experts specialize in all things, Windows Live, and would be delighted to help you with your questions. Please choose a product below to be redirected to the appropriate community:

    Windows Live Mail

    Windows Live Hotmail

    Windows Live Messenger

    Looking for a different product to Windows Live? Visit the home page Windows Live Help for the complete list of Windows Live forums to www.windowslivehelp.com.

  • I have a laserjet m1522nf, but it does not work with autocad 2014

    I have laserjet m1522nf printer when give plot (print) from 2014 Autocad to printer, cad car woking stop check us it with another printer works fine

    I have install Post script driver now Laser jet 1522 nf printer and autocad 2014 works well

  • I can't locate any button screenshot on my internet explore and screenshot on my keyboard button does not work, how do I use my print screen?

    Im trying to print the screen turned on a facebook account and I can't find a button print screen on my toolbars and my screenshot key is not work anymore. I also tried to use FN + Insert and its does not work.

    Hello


    1. what operating system is installed on the computer?
    2. were there any changes (hardware or software) to the computer before the show?

    Method 1: try the keyboard on the screen and see if the problem persists.
    http://Windows.Microsoft.com/en-us/Windows7/type-without-using-the-keyboard-on-screen-keyboard

    Method 2: If the problem persists, you should contact the keyboard manufacturer for assistance.
     
    Hope this information helps.
  • Image - menu entry does not work in Dreamweaver CC 2015

    The new Dreamweaver CC 2015 for the Image - Insert menu item does not work.  20141 until 2015, there are several menu items that have changed.  How shall we put an image now?  I have to return to school?  It seems strange for a new version of change too radically.

    While I'm on the SOAP box, there are a few versions the anchor tag went away, we asked to use the ID tag instead.  Now, which seems to create errors and does not work.

    I know it's two questions, but I imagine I'll find more.  I just went through the issue of expansion (mentioned at the top of this area).  Finish by using a third-party extension manager to get my extensions to work.

    What else will emerge?

    I am disappointed...

    Tom

    That's what you need to do (with the word 'Favorites' in the drop-down list) because you are currently in the Favorites panel of sup of the insertion window...

    After clicking on this course, you should see this...

    Where you would choose HTML to access the Insert Image function.

    I suppose, since you asked so much with this Panel, you had something go sideways during the installation. I would like to try the following steps in order to see if one of them your problem...

    Turn your hidden operating system files, and then try these...

    Clear the Cache in program: removing a corrupt cache file

    Food preferences: restore preferences | Dreamweaver CS6, Dreamweaver CC

    And if neither of this total above work, cleaning and reinstall the program using Adobe cleaning tool: use of the Adobe Creative Cloud cleaning tool to solve installation problems

  • Qosmio G30-163 mouse and keyboard does not work properly

    Hi all

    I installed an update of the firmware of the toshiba site. I think that the upgrade was for the dvd but am not sure. I just saw an available upgrade and installed. Stupid of me. The dvd drive has been previously not recording. If after installing the update of the firmware I has not restarted the machine. In the meantime, I forgot the upgrade and then I did to fix the error of dvd

    "Start the Registry Editor (start, run and type regedit and click on).

    Search for "UpperFilters" and "LowerFilters" (and "UpperFilters.bak" "LowerFilters.bak", if they exist) value under the following key in the registry and delete it:

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Class\ {4D36E965-E325-11CE-BFC1-08002BE10318}

    Exit the registry editor.

    Reset. »

    Now, after restart the keyboard and the mouse does not work. I can't go in safe mode because I can't press ok for the user login screen. I have attached an external keyboard, but it still does not work.

    I use windows xp, I have a lot of data. I can't do anything. If anyone has any idea please help me. The laptop is out of warranty. I'm stuck. Help, please.

    John

    S rally strange because I put t see a link between the firmware CD/DVD, UpperFilters and LowerFilters and the keyboard and mouse.

    This is first time that a removal of the upper and lower filters would undermine the functionality of keyboard and mouse. Which is really strange.

    Anyway, you are able to access the BIOS? If this isn't the case, then this is not good.

    First of all, you should try to save the data stored on the HARD disk in this case, I recommend to remove the laptop HARD drive and connect it using a USB HDD on another controller.
    This would allow you to save the data to another HARD disk.

    Put the removed HARD disk in Notepad, and then try to reinstall the OS from the Toshiba restore CD.
    I hope that this will be possible because I don't see another way to get the operating system again.

    Good luck by a friend

  • Default e-mail (Outlook 2010) does not work after update of Live Essentials 11

    I installed the update of Windows Life Essentials and now my choice of default email does not work - I use Outlook 2010, but Windows Live is displayed.

    If you use Outlook as the default e-mail Client, you should not have installed Windows Live Mail 2011.

    How to uninstall a specific Windows Live Essentials program
       http://windowslivehelp.com/solution.aspx?SolutionID=c861e66a-c839-47C4-a1d5-46b46121fb5d

    If Outlook is not reaffirmed as a default for the mail after you uninstall Windows Live Mail, you will find support for Outlook in these forums: http://social.answers.microsoft.com/Forums/en-US/category/officeoutlook

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Jdev - query Tester does not work

    Jdev Version: 11.1.1.7.1

    The query VO on my Jdev Tester does not work. More importantly on my your Expert mode, when I add a new column to SQL, the attributes do not automatically get added to the VO. Only clue I have is the bottom of the stack trace that is thrown when I click on "Query Builder" (other buttons as Test donot throw any error and no success message):

    java.lang.NullPointerException

    at oracle.javatools.db.jdbc.JdbcDDLDatabase.registerBuilders(JdbcDDLDatabase.java:453)

    to oracle.javatools.db.AbstractDatabase. < init > (AbstractDatabase.java:85)

    to oracle.javatools.db.ddl.DDLDatabase. < init > (DDLDatabase.java:50)

    to oracle.javatools.db.jdbc.JdbcDDLDatabase. < init > (JdbcDDLDatabase.java:74)

    at oracle.javatools.db.jdbc.JdbcDatabaseFactory.createDatabaseImpl(JdbcDatabaseFactory.java:35)

    at oracle.javatools.db.DatabaseFactory.createDatabaseImpl(DatabaseFactory.java:241)

    at oracle.javatools.db.DatabaseFactory.createStandaloneDatabase(DatabaseFactory.java:344)

    at oracle.javatools.db.DatabaseFactory.findOrCreateDatabase(DatabaseFactory.java:326)

    at oracle.jbo.dt.jdevx.ui.view.XVOQueryBuilder.createDatabase(XVOQueryBuilder.java:273)

    at oracle.jbo.dt.jdevx.ui.view.XVOQueryBuilder.invokeQueryBuilder(XVOQueryBuilder.java:56)

    at oracle.jbo.dt.jdevx.ui.JdxMenuManager.invokeQueryBuilder(JdxMenuManager.java:1615)

    at oracle.jbo.dt.ui.view.VOClausePanel.queryBuilderAction(VOClausePanel.java:2440)

    at oracle.jbo.dt.ui.view.VOClausePanel.actionPerformed(VOClausePanel.java:1390)

    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)

    in javax.swing.AbstractButton$ Handler.actionPerformed (AbstractButton.java:2318)

    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)

    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)

    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)

    at java.awt.Component.processMouseEvent(Component.java:6289)

    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)

    at java.awt.Component.processEvent(Component.java:6054)

    at java.awt.Container.processEvent(Container.java:2041)

    at java.awt.Component.dispatchEventImpl(Component.java:4652)

    at java.awt.Container.dispatchEventImpl(Container.java:2099)

    at java.awt.Component.dispatchEvent(Component.java:4482)

    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)

    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)

    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)

    at java.awt.Container.dispatchEventImpl(Container.java:2085)

    at java.awt.Window.dispatchEventImpl(Window.java:2478)

    at java.awt.Component.dispatchEvent(Component.java:4482)

    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)

    to java.awt.EventQueue.access$ 000 (EventQueue.java:85)

    in java.awt.EventQueue$ 1.run(EventQueue.java:603)

    in java.awt.EventQueue$ 1.run(EventQueue.java:601)

    at java.security.AccessController.doPrivileged (Native Method)

    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:87)

    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:98)

    in java.awt.EventQueue$ 2.run(EventQueue.java:617)

    in java.awt.EventQueue$ 2.run(EventQueue.java:615)

    at java.security.AccessController.doPrivileged (Native Method)

    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:87)

    at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)

    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)

    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)

    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)

    in java.awt.Dialog$ 1.run(Dialog.java:1046)

    in java.awt.Dialog$ 3.run(Dialog.java:1098)

    at java.security.AccessController.doPrivileged (Native Method)

    at java.awt.Dialog.show(Dialog.java:1096)

    at java.awt.Component.show(Component.java:1585)

    at java.awt.Component.setVisible(Component.java:1537)

    at java.awt.Window.setVisible(Window.java:842)

    at java.awt.Dialog.setVisible(Dialog.java:986)

    at oracle.jbo.ui.main.JboDialog.setVisible(JboDialog.java:130)

    to oracle.jbo.ui.wizard.JboWizard$ MddWizardDialog.setVisible (JboWizard.java:2558)

    at oracle.bali.ewt.dialog.JEWTDialog.runDialog(JEWTDialog.java:395)

    at oracle.bali.ewt.dialog.JEWTDialog.runDialog(JEWTDialog.java:356)

    at oracle.jbo.ui.main.JboDialog.showDialog(JboDialog.java:108)

    to oracle.jbo.ui.wizard.JboWizard$ MddWizardDialog.showDialog (JboWizard.java:2494)

    at oracle.jbo.ui.wizard.JboWizard.createMddWizard(JboWizard.java:550)

    at oracle.jbo.ui.wizard.JboWizard.setVisible(JboWizard.java:353)

    at oracle.jbo.ui.wizard.JboWizard.showDialog(JboWizard.java:331)

    at oracle.jbo.dt.jdevx.ui.editors.view.VoeSqlPage.showEditSqlDialog(VoeSqlPage.java:625)

    at oracle.jbo.dt.jdevx.ui.editors.view.VoeSqlPage.invokeEditSqlDialog(VoeSqlPage.java:592)

    at oracle.jbo.dt.jdevx.ui.editors.view.VoeSqlPage.performAction(VoeSqlPage.java:935)

    at oracle.jbo.dt.ui.main.controls.DtcAction.actionPerformed(DtcAction.java:47)

    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)

    in javax.swing.AbstractButton$ Handler.actionPerformed (AbstractButton.java:2318)

    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)

    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)

    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)

    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:273)

    at java.awt.Component.processMouseEvent(Component.java:6289)

    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)

    at java.awt.Component.processEvent(Component.java:6054)

    at java.awt.Container.processEvent(Container.java:2041)

    at java.awt.Component.dispatchEventImpl(Component.java:4652)

    at java.awt.Container.dispatchEventImpl(Container.java:2099)

    at java.awt.Component.dispatchEvent(Component.java:4482)

    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)

    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)

    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)

    at java.awt.Container.dispatchEventImpl(Container.java:2085)

    at java.awt.Window.dispatchEventImpl(Window.java:2478)

    at java.awt.Component.dispatchEvent(Component.java:4482)

    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)

    to java.awt.EventQueue.access$ 000 (EventQueue.java:85)

    in java.awt.EventQueue$ 1.run(EventQueue.java:603)

    in java.awt.EventQueue$ 1.run(EventQueue.java:601)

    at java.security.AccessController.doPrivileged (Native Method)

    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:87)

    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:98)

    in java.awt.EventQueue$ 2.run(EventQueue.java:617)

    in java.awt.EventQueue$ 2.run(EventQueue.java:615)

    at java.security.AccessController.doPrivileged (Native Method)

    in java.security.AccessControlContext$ 1.doIntersectionPrivilege(AccessControlContext.java:87)

    at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)

    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)

    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)

    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)

    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)

    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)

    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

    Any idea on what could be the problem?

    The question seems to be to the JDBC data source that we define in the configuration Module of the Application screen. We have a JNDI to data source, and somehow at design time, the your do not work with it. Currently, I change that to a local data source, the tester of VO, requeteur all work fine.

Maybe you are looking for