Help JApplet not co-operating

Hello.. i have the following code which is just like a pulldown menu in an applet on the web. it wokrs fine (u can test it ) but whenever the mouse leaves the button the menuitems remains. i want to implement a mouse or focus action so that when the mouse leaves the buttons or menuitems the menuitems disappear. try compiling and see it for ur self (it is error free).
Thanks.
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Test extends JApplet
     JButton button, button2;
     JPopupMenu jpop, jpop1;
     JMenuItem i1 [], i2 [];
     JMenu m2, m3, m4;
     String si1[] = {"Home", "Corporate Profile", "Our Mission", "Our Clients" , "Careers @ CT Limited"};
     String si2[] = {"Debit Card processing", "Credit Card processing", "Stored Value Card", "Card Personalization", "Card Printing", "Sales of POSs", "ATM Management"};
     String si3[] = {"Virtual Payment Processes", "e-Payment Solutions", "Proprietary Bank Card"};
     String si4[] = {"Biller Service Solutions", "Biller Service Provider", "Merchant Processing"};
public void init ()
     getContentPane().setLayout (new FlowLayout());
     requestFocus();
     jpop = new JPopupMenu ();
     jpop1 = new JPopupMenu ();
     i1 = new JMenuItem [5];
     for (int i = 0; i < si1.length; i++)
          i1[i] = new JMenuItem (si1);
          jpop.add (i1[i]);
          jpop.addSeparator();
     m2 = new JMenu ("ETF and Card");
     m3 = new JMenu ("Electronic Banking (e-banking) ");
     m4 = new JMenu ("Electronic Presentment & Payment ");
     jpop1.add (m2);
     jpop1.add (m3);
     jpop1.add (m4);
     i2 = new JMenuItem [7];
     for (int i = 0; i < si2.length; i++)
          i2 [i] = new JMenuItem (si2[i]);
          m2.add (i2[i]);
          m2.addSeparator();
     button = new JButton ("Move your mouse here");
     getContentPane().add (button);
     button.addMouseListener (new MouseAdapter ()
          public void mouseEntered(MouseEvent evt)
               jpop.show (button, 0,25);
     button2 = new JButton ("Move your mouse here");
     getContentPane().add (button2);
     button2.addMouseListener (new MouseAdapter ()
          public void mouseEntered(MouseEvent evt)
               jpop1.show (button2, 0,25);
     getContentPane().addMouseListener (new MouseAdapter ()
          public void mouseEntered(FocusEvent me)
               jpop.hide();
               repaint();

Any solution ?....
Thanks.

Similar Messages

  • Invoice validation program error:Could not find operating unit options

    Dear Team,
    Once my Payables Open Interface Import program successfully completed, I am trying to running invoice validation program which is ended with warning as bellow,
    (Bulk CALCULATE) START SYSDATE 17-DEC-2012 04:04:19
    Could not find operating unit options
    Encountered unexpected error: User-Defined Exception
    (Bulk CALCULATE) END SYSDATE 17-DEC-2012 04:04:23
    and invoice placing into Dist Variance hold,
    my interface program placed data in to based tables (ap_invoices_all and lines_all ) but distributions are not getting generating. Can you please do help me.
    Find attached excel sheet for ur references.
    Thanks
    Sathiya

    Make sure the library (pll file) is in the path indicated by your FORMS60_PATH in the registry.
    Hope that helps,
    Karim.

  • HT1222 I am trying to update my phone so I can save my info on my old phone & get a new phone, but I get a error that says "There was a problem with downloading teh software, the network connection timed out.."  HELP!  Not sure what my settings shoud be..

    I am trying to update my phone so I can save my info on my old phone & get a new phone, but I get a error that says "There was a problem with downloading teh software, the network connection timed out.."  HELP!  Not sure what my settings shoud be...
    I never updated anything until now...I want o update my iPhone to the newest version, but i do not want ot loose all that I have on this phone. I was told I needed to update the operating systems so i can put things into the cloud for transport to new phone, but I am just not sure how to do this..Can you help out here??

    Dear Jody..jone5
    Good for you that can't update your iphone because I did it and my iphone dosen't work for example I can't download any app like Wecaht or Twitter..
    Goodluck
    Atousa

  • Calling a WS from a servlet...EndpointPort does not contain operation meta.

    Hi all,
    I'm trying to call a service from a servlet but I get an error:
    Error: Endpoint {http://com.susan/SusanWS}SusanWebServiceEndpointPort does not contain operation meta data for: LoginWebService
    ...the WS is up and running (of this I'm sure...cause I also tested it with soapui...and it works..)
    The webservice is running on a local jboss (to which i can successfully connect, and see the wsdl...).
    the servlet is running on a local tomcat (which is also ok...).
    I'm trying to call the WS like this:
    Service service = new Service();
    Call call = (Call)service.createCall();
    call.setTargetEndpointAddress( new URL( wsEndpoint ) ); //http://localhost:8080/webservices/SusanWS (the same I used in soapui...so it should be right)
    call.setOperationName( "LoginWebService"); //name of the method i want to use...
    call.addParameter( "appCode", Constants.XSD_STRING, ParameterMode.IN );
    call.addParameter( "login", Constants.XSD_STRING, ParameterMode.IN );
    call.addParameter( "passwd", Constants.XSD_STRING, ParameterMode.IN );
    //            call.setReturnType( Constants.XSD_INT ); //left this out...should be the cause...
    Object retval = call.invoke( new String[] { appCode, login, passwd} ); //appCode,login,passwd contain the strings i want to  forward as input.if I try to run it I get(in the jboss log...):
    15:41:55,594 ERROR [SOAPFaultExceptionHelper] SOAP request exception
    javax.xml.rpc.soap.SOAPFaultException: Endpoint {http://com.susan/SusanWS}SusanWebServiceEndpointPort does not contain operation meta data for: LoginWebService
    at org.jboss.ws.server.ServiceEndpointInvoker.getDispatchDestination(ServiceEndpointInvoker.java:181)
    at org.jboss.ws.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:107)
    at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.java:209)
    at org.jboss.ws.server.ServiceEndpointManager.processSOAPRequest(ServiceEndpointManager.java:355)
    at org.jboss.ws.server.StandardEndpointServlet.doPost(StandardEndpointServlet.java:115)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.jboss.ws.server.StandardEndpointServlet.service(StandardEndpointServlet.java:76)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    at java.lang.Thread.run(Thread.java:595)
    don't know if it can help...the soapui request looks like this:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://com.susan/SusanWS/types">
    <soapenv:Header/>
    <soapenv:Body>
    <typ:LoginWebService>
    <LoginInfo_1>
    <appCode>WEB_SERVICES</appCode>
    <login>root</login>
    <passwd>root</passwd>
    </LoginInfo_1>
    </typ:LoginWebService>
    </soapenv:Body>
    </soapenv:Envelope>
    anybody has an idea of what I'm doing wrong?
    Edited by: Turbo-555 on Mar 18, 2009 8:36 AM

    if I change the code with:
    //call.setOperationName( wsMethod );
    call.setOperationName( new QName("http://com.susan/SusanWS",wsMethod)); //http://com.susan/SusanWS is the targetnamespace...the error changes into:
    16:55:21,051 ERROR [SOAPFaultExceptionHelper] SOAP request exception
    javax.xml.rpc.JAXRPCException: Cannot find child element: {http://com.susan/SusanWS/types}LoginWebService
    at org.jboss.ws.binding.soap.SOAPBindingProvider.getParameterFromMessage(SOAPBindingProvider.java:799)
    at org.jboss.ws.binding.soap.SOAPBindingProvider.unbindRequestMessage(SOAPBindingProvider.java:282)
    at org.jboss.ws.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:112)
    at org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.java:209)
    at org.jboss.ws.server.ServiceEndpointManager.processSOAPRequest(ServiceEndpointManager.java:355)
    at org.jboss.ws.server.StandardEndpointServlet.doPost(StandardEndpointServlet.java:115)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.jboss.ws.server.StandardEndpointServlet.service(StandardEndpointServlet.java:76)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    at java.lang.Thread.run(Thread.java:595)

  • F1 help does not work in transaction SE80

    Hi Experts!
    A strange error occurred in our ECC 6.0 SR3 system (Windows 2003 SE 64 bit based, MaxDB 7.6.03.009). F1 help does not work in transaction SE80. Either nothing is shown when a keyword as SELECT is marked and F1 key is pressed, or a strange popup appears with title u201CABAP Keyword Documentationu201D and root u201CHit List of Index Searchu201D - [screenshot|http://i43.tinypic.com/aox7d.jpg]. No matter what I choose in the tree it always closes, no help is displayed and SAP GUI returns in the main screen in transaction SE80.
    I found this thread [Re: SAP F1 Help and SE80 issue|Re: SAP F1 Help and SE80 issue] but it did not help me. This is my system information:
    SAP PC VERSION INFORMATION: saplogon.exe
    MAIN MODULE INFORMATION:
       saplogon.exe
       SAP Logon за Windows
       Final Release 710
       7100.3.12.1042
       1046700
    SYSTEM INFORMATION:
       Operating system: Microsoft Windows XP 5.1 (2600) Service Pack 3
       Internet Explorer v. 7.0
    Application help works perfect - I checked the configuration in transaction SR13 too.
    Any ideas will be appreciated!
    Thanks!

    Hi Presu,
    As it is seen from my previous post SAP GUI version is 7.10 SP 12. I downloaded the last SP 13 and installed it. Now SAP GUI information looks like this:
    SAP PC VERSION INFORMATION: saplogon.exe
    MAIN MODULE INFORMATION:
       saplogon.exe
       SAP Logon за Windows
       Final Release 710
       7100.3.13.1045
       1063164
    The problem is not resolved.
    This happens from different workstations with different versions and sub-versions of SAP GUI, so the problem is not caused from the GUI I think. It happens using different logon users and in all SAP system cliens.
    Any other suggestions?
    Best regards,
    Pit

  • NOT IN operator giving the wrong results

    DB version:10gR2
    Why is NOT IN giving the wrong results. Isn't NOT EXISTS operator a flawless alternative to NOT IN?
    create table my_table1 (col1 number);
    insert into my_table1 values (1);
    insert into my_table1 values (2);
    commit;
    create table my_table2 ( col1 number);
    insert into my_table2 values (1);
    commit;
    select * from my_Table1;
           COL1
              1
              2
    select * from my_table2;
           COL2
              1
      --correct result
      SELECT * FROM my_table1 t1 WHERE NOT EXISTS
    (SELECT * FROM my_table2 t2 WHERE t1.col1 = t2.col1)
           COL1
              2
    ---correct result using IN
    SELECT * FROM my_table1 t1 where col1 not in (select col1 FROM my_table2 t2);
           COL1
              2
    Inserting a NULL to my_Table2
    Now the query using NOT IN is returning wrong results.
    insert into my_table2 values (null);
    commit;
    SELECT * FROM my_table1 t1 where col1 not in (select col1 FROM my_table2 t2);
    no rows selected
    Query using NOT EXISTS is still giving the right results.
    SELECT * FROM my_table1 t1 WHERE NOT EXISTS
       (SELECT * FROM my_table2 t2 WHERE t1.col1 = t2.col1);
           COL1
              2

    ScottsTiger wrote:
    can i use NOT EXISTS(with a proper Co-related subquery) as a safe alternative to NOT IN?Depends on your data and what you need to achieve.
    Personally I avoid using NOT EXISTS or NOT IN if I can really help it.
    My preferred method is to outer join the tables together and then remove any resultant rows where a value exists and I didn't want one. ;)

  • Nokia 500 Blocked - not permitted operation

    so when you choose video call form the calling menu on the screen appears "not permitted operation" and the phone is blocked
    Moderator's note: We have provided a subject-related title to help other forum users easily view and respond to this post.

    Thanks, but you can really associate a "video call" number in theaddress list, then if I push video call the phone blockes.Moreover in the menu "video call" appears but in the operating manual this operating is not mentioned. Then the front facing camera is not necessary if you call a 3G surveillance camera. You can implementing the operating SW on the phone anyway.

  • Could not complete operation - pathfinder in InDesign CS4

    Trying to do a very basic shape substraction and I  get the "could not complete operation. Pathfinder result describes empty region." I've been looking for a solution or patch but don't seem to find any and many of the posts seem old, don't work or don't offer any solutions.
    Am I missing something or can't find it? Or is the pathfinder pallette in ID pretty much useless. Any input would be helpful. Thanks in advace.

    This was a basic square atop a basic circle (subtracting to create basically a half circle) drawn with basic. Yesterday tried adding and other just to see and its the same message.  Now I just did it again, in reviewing your responses and it worked in a fresh document. Crazy. Could it be a memory thing? I tried the clean document yesterday and it didn't work. The only thing different today was closing InDesign opening and starting with a new document and doing this action first thing. 
    Thanks guys. Though I prefere Illustrators pathfinders too I did find IDs to be useful in a pinch which I guess may be a feature lost.

  • IE display data, but not FF/Opera

    I've never quite dealt with anything like this before...I'll
    do my best to explain it.
    My Flash file takes info from a DB through PHP and displays
    them into several different radio buttons. IE displays the
    information correctly, but FF/Opera do not. I tried using static
    data, which displays fine in all browsers. But for some reason this
    dynamic data I'm trying to put into the radiobuttons does not want
    to display in FF/Opera.
    I was told by one individual it could be a font issue. I
    didn't preload any fonts. Regardless, I kept the radio buttons but
    used dynamic text fields to display the data. Again, the same exact
    thing occured. I have the same version of Flash Player installed in
    all browsers (according to this site).
    Can anyone possibly explain to me why this is happening?
    Again, it's not a question of the data not getting to Flash because
    it shows up fine in IE. Even if I make changes to the text I want
    displayed, it shows up correctly for IE, not FF/Opera.
    Really hoping someone can put an end to my misery.
    Tim Trice

    "timothytrice" <[email protected]> wrote in
    message news:e7kkvr$sbm$[email protected]..
    >I don't have a clue what you mean by that? I've never had
    to do anything like
    > that before? I'm using Trebuchet MS...but I've used
    _sans and _serif and those
    > don't work, either. I don't have a problem with the
    fonts with any of my other
    > files.
    >
    > Tim
    If you use a dynamic text font AND your system has that font
    AND you don't do any kind of tweening or effects on it, it should
    display ok. If you have the dynamic text moving around or
    effects on it you need to embed it's font outlines to keep it from
    disappearing. To embed font outlines, open up the properties
    window for the text and click on the 'character' button. Embed font
    outline.
    Hope that helps,
    tralfaz

  • NOT IN operation in ODI

    Hi,
    I need some assistance in performing NOT IN operation using ODI.
    My scenarion.
    I have got 2 source tables A and B. Table A has columns C1,C2.
    Table B has columns C3,C4
    I need to populate table C from table A. but i need to do a lookup on table B column C1 before taking the values to target.
    I want only the values from A.C1 not in (select B.C1 from B)
    Any help on this is appreciated.
    Regards

    Hi Guys,
    Let me try to help...
    First I suggest you to use not exists instead not in. "Not in" don't use index and can give you performance problems in high volume load.
    Plus, I can't suggest you to use a view once you will loose the data lineage, one of the great things about ODI.
    One possible alternative is
    1) Create an intermediate table with all columns that you need as query result, plus one more (just one position column)
    2) Create a join between both table but in "left join" to that one where you will apply the filter "not in" (your A table)
    3) in the "extra" column, map any "not null" column from the second table (your B Table) with a code like:
    case when B.C1 is not null
    then 'E' -- exists
    else 'N' -- not exists
    end
    4) now, in this intermediate table, you have all columns that Exists flagged as "E", use it in a new interface with a single filter....
    Make any sense?
    Cezar Santos
    [www.odiexperts.com]

  • Points per sheet. I '84. Please help, if not difficult, e-mail

    HP Deskjet 2050 J510 series,  printer is connected USB, tested Sk. & Pr. Doctor , test print is normal, does not print. 2 points per sheet. I '84. Please help, if not difficult, e-mail   [edited email by moderator].
         Best Regards.           

    Hi @starik,
    Welcome back to the HP Support Forums! I see you are not able to print to your HP Deskjet 2050 with your computer running the Windows 7 Operating system. You are able to print a test page using the Print and Scan Doctor. To better assist you can you please leave me with the following information:
    1. What program are you trying to print from?
    2. Is it all programs you are unable to print from?
    3. Are you getting any error messages?
    I hope to hear from you soon.
    Thanks,
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • PSE 10  and Adobe CS6: When running silent install help is not working afterwards

    Hello,
    I'm not sure if this is the correct forum. If not: Please help me find the correct one.
    I have a big issue with Adobe CS6 (and former versions like Photoshop Elements 10): When installing it from DVD running GUI everything is working fine afterwards. If I install e.g. Photoshop Elements 10 using "Silent Installation" help is not working afterwards. It states that it cannot locate the URL. I have not installed AIR and also do not plan to install it.
    I have 'played' a little around with Common Files\Adobe\helpcfg and help directory. Now at least I do not get an error message but still it's not the online help which opens in the browser but the web page that is defined as 'home'.
    The same I see now in Adobe CS6. I have e.g. packaged After Effects and Illustrator and when deploying it I'm not able to open help as well and I fear that this is the same issue.
    Has anyone deeper knowledge about how "helpcfg" is working? Any example files? Any other help appreciated as well.
    Kind regards
    János

    @hannilator Have you checked the exceptions folder contents for instructions on how to push to logged off computers? Here's what I get when I package CS6 (DesignWebPrem) and excude AIR/CHC:
    After you have deployed the package, separately install the products in the exception folder.
    IMPORTANT: Before you install the products in the exception folder, refer to the following Adobe Knowledgebase article for information on installing these products and configuring the settings correctly:
    http://www.adobe.com/go/aamee_exceptions
    NOTE: The installation commands provided below will work when the user is logged in to the client machine where the package is being deployed. For the scenario where the user is not logged in, prefix the following string to the command:
    sudo launchctl bsexec `ps auwwx |grep [l]oginwindow | awk '{ print $2 }'`
    As an example, here is the command to install "Adobe AIR" when the user is not logged in to the client machine (assuming Adobe AIR is part of the package):
    sudo launchctl bsexec `ps auwwx |grep [l]oginwindow | awk '{ print $2 }'` Adobe\ AIR\ Installer.app/Contents/MacOS/Adobe\ AIR\ Installer -silent
    ###################################### Command to install Adobe Dreamweaver Widget Browser ######################################
    Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer -silent -eulaAccepted -programMenu WidgetBrowser.air
    ###################################### Command to install AdobeHelp ######################################
    InstallAdobeHelp appVersion=4.0.244 appId=chc pubId=4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 installerArg1=-silent installerArg2=-eulaAccepted installerArg3=AdobeHelp.air

  • Search help is not working at  variable

    Hi
    when i am aexecuting the report. at variable screen when i am selectiong like compy code , heer lot of company code are there, there in search tab i need to search perticual comp code, please let me know any note i need to apply?

    Hi,
    check this:
    FAQ: Input helps in Netweaver BI
    SAP Note Number: 1080863
    This note gives answers to frequently asked questions (FAQ) with regard to using the input help for characteristics in SAP NetWeaver BI. This includes the input helps in the BI BEx Java Web as well as the input helps in the BI BEx Tools.
    To make sure that this is not caused by a program error check this notes on relevance:
    F4 returns incorrect values
    SAP Note Number: [1161224|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bw_bex/~form/handler]
    Input help does not display any values in variable screen
    SAP Note Number: [1074803|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bw_bex/~form/handler]
    Regards
    Andreas

  • Search help is not triggering second time in interactive form

    Hi,
    I have online interactive form in WDABAP. And I have few search helps in the form, If i click on any search help it is opening and I can select the value and the same is populated to the field. But if i click it again search help is not opening.
    Only one time it is triggering and also after I clicked one serach help, other search helps also dont work.
    Can some one guide me? Is it something to do with scripting or any other configuration?
    Now Im using ALD7.1 and Reader version is 8.1.0.
    did any one faced this problem? Really appreciate if some one can help me on this.
    Regards,
    Ravi

    hi,
    The following code is generated in the preopen event of the valuehelp.
    // DO NOT MODIFY THE CODE BEYOND THIS POINT - 710.20061129084151.349066.349066 - ValueHelpDropDown.xfo
                       var processingValueHelp = ContainerFoundation_JS.getGlobalValue(event.target, "processingValueHelp");
                       if(processingValueHelp == false) {
                           ContainerFoundation_JS.setGlobalValue(event.target, "processingValueHelp", true);
                           this.rawValue = "";
                           this.clearItems();
                           ContainerFoundation_JS.SendMessageToContainer(event.target,
                                                                         "valueHelp",
                                                                         this.dataNode.somExpression.replace(/(xfa.?\.)(datasets.?\.)(data.*?\.)/, ""),
                                                                         this.rawValue,
                                                                         event.target.mouseX,
                                                                      event.target.mouseY);
                       // END OF DO NOT MODIFY
    I have tried placing this code in click event instead of preopen.But still no use. Can we make changes to this code? Can some one give me some idea what changes need to be done..
    Regards,
    Ravi

  • Error message "iTunes Helper Resources not available" and saving to wrong Drive

    I am trying to upgrade iTunes to 10.7 on my PC but I keep getting the error message "iTunes Helper Resources not available". Diagnostics take me a support page which talks about not being able to see the device in iTunes - but I can see the device without problems.
    I thought I would try reinstalling iTunes from the webpage and it downloaded to my PC fine but when I went to setup, it showed me it is saving to a DVD drive - not my Hard drive. It also won't let me change the location for the file. I have no idea how that's happened as I obviously don't use the DVD drive as a USB (although the PC see's it as one) and I've never chosen it as the location for iTunes in the 7-8 years that I've been using it.
    I then thought I'd try uninstalling it and reinstalling it (to the correct drive) but again, it comes up that the DVD drive is invalid and won't uninstall iTunes.
    So I'm stuck and haven't been able to find anything helpful on the support pages or in iTunes Help.
    Please someone help ...
    Thanks.

    Try the following user tip. (Probably, the section on clearing the installation database might be best given that you've currently got a drive on the problematic letter at the moment.)
    "Invalid drive X:\" install errors

Maybe you are looking for

  • Tips to fix battery issue on iphone 4s after upgrading to iOS 6.0

    ladies and gentlemen.....i think i found a simple solution but its the only way to fix the problem until apple decides to gives us a patch. i have an iphone 4s and yesterday i did the upgrade to 6.0 this morning i noticed my battery was draining fast

  • Windows 8.1 update errors

    i have problems with this update

  • Loading Non-English Characters using VBA and BAPI

    Hi Experts, I am trying to load Non-English characters (Chinese, Korean, Japanese, etc.) into a SAP Table using BAPI and VBA. I have set the connection language and codepage values but when I run the tool, the non-English characters display as ?????

  • I can't get flash drive to open on my iMac

    I poped a flash drive into a usb port on the back of my iMac 27 and nothing happened. I just put it on my windows pc and it opened right up. Wondering why it's not responding on iMac?

  • Number of columns in query form

    I have an <af:query> component from a View Criteria. In the design it says "No search fields added." I have 10 query fields. I want to display 3 columns, with 4,2,4 fields respectively. If I set the property "Rows" to 3, it displays 4,4,2 fields in t