Help plz....for mdi application...

hi every body....
im creating a mdi application but facing some problems....i have created 3 class for my mdi application.... 1 for menu bar.... 2nd for MDI Form and third for JInternal Frame.... menu and mdi forms are ok but when i click on menu item to view internal frame it execute but not visible in the mdi frame....i found the problem im not adding internal frame in MDI's desktoppane but destoppane in MDI Frame calss....how to add intenal fram from menu action event to MDI Frame....desktoppane...help me plz

well i have find a solution....
i have created a static object for JDesktopPane like
static JDesktoppane desktop = new JDesktoppane() in MDI Class which can be accessable in menu class like MDI.desktop.add(new InternalFrame) its working fine i want to ask will creat any problem in future or not ?.....

Similar Messages

  • Design Pattern help needed for MDI application

    Hi,
    I am writing an mdi application which contains a JSplitPane. The left pane contains a JTree and the right contains a JDesktopPane which houses n number of JInternalFrames. The JInternal Frames need access to the JTree. Also both panes (objects w/in) need access to elements of the JFrame. I am currently implemeting access by making most of the JFrame objects static and creating getter/setter methods for access. Does anyone know any desing patterns I might use to solve this dilemma?
    Thanks,
    John

    The observer design pattern causes the child objects to chage state when the parent changes state. The type of pattern I need would allow the child objects of the parent JFrame to be available globally without having to make them static. I am wrong in this? Would the observer pattern solve this issue.

  • Help Text for Webdynpro Application

    Hi Guys,
    I've created a "Help" link. clicking on it displays a popup  Help_Window. I want to display paragraph of  Text in this Help_Window.
    Is there any element available where i can enter a paragraph of text ?
    ( my goal is to create  documentation for the application. just like we do documentation for se38 programs )
    Your inputs are highly appreciated.
    Thanks in Advance.
    Arun.

    Solution :
    1. Create MIME to import the help.PDF file which contains documentation to your application
    2. In Help_View i have included the element INTERACTIVE_FORM.
    3. In method WDDOINIT of HELP_VIEW  i have included the following code to call the help.pdf file
      data:
        mime_repository type ref to if_mr_api,
        content type xstring,
        url type string value '/SAP/BC/WebDynpro/SAP/WDR_TEST_ADOBE_PDF_ONLY/test.pdf'.
      mime_repository = cl_mime_repository_api=>get_api( ).
      call method mime_repository->get
        exporting
          i_url = url
        importing
          e_content = content.
      wd_context->set_attribute( name = 'PDF' value = content ).
    4. on clicking the help link from my main window i'm calling the HELP_VIEW as a popup window. in this window it displays the help.pdf file which give the documentation about the application.
    check example - WDR_TEST_ADOBE_PDF_ONLY

  • How to implement the documentation help function for webdynpro application

    We have implemented SAP Travelmanagement ESS services which uses ABAP Webdynpro. In each of the screen there is a "help" link on the top right corner. I would like to know how to use this function to link a help file that explains what needs to be done on each screen.
    My requirement is to provide screen specific help information as a document for each of the screen in my webdynpro application.
    Any suggestions, options, samples from the experts would be most appreciated.
    Regards
    Vivek

    Hi Vivek,
    seems to be your WDA are built by FPM, thats how by default you will be getting help link in top corner.
    when you click on help link it has to display the help related data.
    for this sap calls the standard wdc: WDHC_COMPONENT and the view:WDHC_APPL_HELP in this view you will see the element as: TEXT to fill some text which is your help data.
    there might be some way to fill this TEXT (text view) try this.
    or else i will check and upate you soon.
    all the best.
    Regards,
    Mahesh.Gattu

  • Help me for MI Applications on WAS SP12

    Hi All,
    Could anyone guide me for MI development.
    I have the following infrastructure.
    i have installed wAS-SR12,EP-SP12, NWDS SP12.
    i could able to get the SAP MI login screen from this url http://eportal:50000/mi. But unable to find the proper userid and password (i am giving the administrator and its password), System as localhost (ie., xportal), system number = 00. On log on, i am getting the username and password incorrect.
    I am not sure, whether i have got MI got installed or not. From forums i found that the Mobile Infrastructure automatically when we install the WAS SP12.
    Could anyone help me to show the steps if i am missing anything. Like what are the steps i need to have to start working on MI applications using webdynpros.. Please help me..
    Thanks & Regards,
    Raghavendra Pothula

    Hi Raj,
      You need to have an ABAP+ JAVA Stack installation of the WAS 6.40 to use MI.
    Initially you will need to setup the props file, add the appropriate authorization and then should be able to Synchronize. If you follow the MI Installation Guide for SP12 you will be fine.
    FYI to get to the MI Webconsole you should access it via
    http://eportal:50000/me rather than http://eportal:50000/mi
    -wael

  • Help me for some applications in 520

    i need below applications for my 520
    1.traffic applications-to know rout,traffic jam,police,accident details on road.
    2.spy applications-my daughter also using android.her complete call history and message details i need.
    3.scanner-any software for using my phone as scanner.
    4.travelling route hotel details also i need
    i dont know the good softwares for my above needs.
    can help me

    1. here maps and here drive
    2. you should better find those apps yourself...
    3. handyscan
    4. priceline hotels and hotels.com
    The silence will fall

  • Help screen for MII application?

    I am part of a team that is developing a pretty big and complicated system built with .irpt pages and MII applets, queries, displays and transactions.
    Does MII offer a way to build a custom help screen, similar to Microsoft's HTML help?  How have creators of other MII applications done their help screens?  Are there any examples to look at?
    Thanks in advance!

    MII does not offer a special tool for creating help pages. You can use any tool for building dynamic web pages that you would also use to build your application, even external tools like Adobe Flex to create nice screens.
    I once created a PDF User Guide which I linked into the User Navigation, so users can read it online or print it easily if needed. You may create help buttons that open small help pop ups.
    Perhaps other users can share there ideas?
    Michael

  • How do I make a global helper servlet for all applications?

    I am running about five different web applications in tomcat 5.0.24. They all need to do some spelling correction from time to time. I have a spelling correction API and a bunch of dictionaries, etc. so I can do it just fine. The problem is, I don't want each application to create all the dictionaries because then I end up with five spell checking programs and five dictionaries being accessed (basically I am exactly repeating myself five times and I start running out of memory). I would like to have a servlet that just sits waiting all the time and which any other servlet or JSP in any of my web applications can quickly dash of a spell check request to at any time.
    How do I do this?
    I think I need to write a servlet since I want to run it in tomcat and access it from my webapps, but it might not need to be a servlet since it is never actually contacted from a browser and will not ever write anything back to the client. I just need my other servlets and JSPs to access the spell checking functionality from time to time.

    I'd say tomcat/common/lib is a good guess for where you'd put the class's jar file, but I don't use Tomcat so I can't say for sure. As for how to only have one dictionary, you need a singleton class, i.e. one that only permits one instance of the class to be created. Like this, if you haven't heard of it:public class SpellChecker {
      // create a single SpellChecker here:
      private SpellChecker theInstance = new SpellChecker();
      // don't let anybody else create another one:
      private SpellChecker() {}
      // provide a method for returning the single instance:
      public static SpellChecker getInstance() {
        return theInstance;
      // remaining methods go here
      // watch out for synchronization issues
    }To get hold of the spell-checker, just doSpellChecker.getInstance()PC²

  • HELP PLZ for the luv of go

    Ok, I bought a Creative ZEN V Plus 4GB a couple of weeks ago, installed the software and everything was cool and the gang...! Untill yesterday when I plugged in my Creative MuVo tx 28MB, because right after that I plugged back in the ZEN V Plus and the "ZEN V Series Media Explorer" said my player is not connected...
    I reinstelled the software, deleted the driver, but I think I'm all out of luck. All I get is this: A problem occured during the install of the hardware bla...
    Can you guys help me please? What am I doin wrong?

    Hey,
    Sorry to hear about the problems. Take a look at the KBase article SID 9287, Here's the link http://uk.europe.creative.com/support/kb/article.asp?l=3&sid=9287. This covers detection problems with players. Click on the "Start Troubleshooting" and run through this and it should sort it out.
    You could also try using a system restore to an early date. This is accessible from the help and support section thru the start menu.
    Hope this helps,
    JohnMessage Edited by John-CL on -4-200603:8 PM

  • How to create a help page in my application like the one in HTMLDB ?

    Hi,
    What's the best way to create a help file for my application and link it like the help link at the top right of HTMLDB ?
    Thank you.

    That's what I did, but I have a lot of screen captures. Where would be the best place to save those gif, server or in the database by loading them via the images tab in HTMLDB ?
    Thank you.

  • Help! "The iTunes application could not be opened. You do not have enough access privileges for this application"

    I am getting the following error when trying to open iTunes: "The iTunes application could not be opened. You do not have enough access privileges for this application." I am logged in with the admin (and only) user account on my laptop, so I'm confused as to why this would start happening all of the sudden.
    I poked around in the control panel trying to find random options that would fix it, but nothing has. I'm running Windows 7.
    Thanks for any help!

    have you seen this discussion ?

  • I have just getting a new phone and I have forgot my password an Apple ID what I made new for the new phone now I cannot get on it because asking for id and password what should I do help plz thank u

    I have just getting a new phone and I have forgot my password an Apple ID what I made new for the new phone now I cannot get on it because asking for id and password what should I do help plz thank u

    Try
    https://iforgot.apple.com

  • The Help Link from the Application Pages Does not Work for Peoplesoft Campus Solutions 9.0

    Hi everyone.
    I have a problem, I have been trying to set up the Help Link from the Application Pages for Peoplesoft Campus Solutions 9.0 according to the instructions given in the Document: http://docs.oracle.com/cd/E17566_01/epm91pbr0/eng/psbooks/EnablingtheHelpLinkfromApplicationPages.pdf ,  (referenced in the Doc ID 1289101.1, E-PB: How to Set Up the Context Sensitive Help with Hosted PeopleBooks using Universal Linking).
    I follow the instructions of that document carefully:
    I go to: PeopleTools -> Web Profile -> Web Profile Configuration
        2. Then I choose the Web Profile: "Development".
        3. Then Change the value for the Help URL field by entering the following URL format: http://www.oracle.com/pls/topic/lookup?id=%CONTEXT_ID%&ctx=hrcs90r5 , the ctx parameter selected is the one that correspond to  the Campus Solutions (hrcs90r5) according to the Product Line Code Table (ULinkID) especified in the mentioned document.
        4. Stop the Web Domain and Clear cache.
        5. Start the Web Domain again.
    After setting up the Web Profile Configuration I test the help links, thas is why I click in the Help link in any Peoplesoft CS 9.0 Application Page (modify a person), but the next error message appears: "We're sorry, the topic you requested was not found.".
    I tried many combinations with the ctx parameters URL but it does not work yet. 
    I did the same test, but this time using the Help URL field with a HRMS ctx parameter by entering the following URL format: http://www.oracle.com/pls/topic/lookup?id=%CONTEXT_ID%&ctx=hcm92pbr5 , and It works fine !!!
    According to the previous test you realize that It works with HRMS ctx parameter but not with Campus Solutions 9.0 ctx parameter,  Does anybody know what else can I do ? Am I doing anything wrong or missing? or maybe the Oracle's ctx parameter for Campus Solutions URL It is broken simply.
    Thanks for you help and feedback.

    2799444 - The page you are testing with appears to be a Workforce Administration page. Is that correct?
    The CS PeopleBooks would only work for CS pages, e.g.: try navigating to Main Menu > Campus Community > Personal Information > Add/Update a Person
    Also, you can use multiple ctx parameters:
    E.g.: http://www.oracle.com/pls/topic/lookup?id=%CONTEXT_ID%&ctx=hrcs90r5&ctx=hcm92pbr5&ctx=pt852pbh2
    This way the help would work for the HR related pages like Workforce Administration, Campus Solutions pages like Campus Community and also PeopleTools pages like Web Profile Configuration. Hope this clarifies your question. Thanks!

  • Please , help me for apple id.......  i made new id but there is a credite card option and that's why i am not able to download any free application for iphone,.....so,.....what i do about this problem..???

    please , help me for apple id.......  i made new id but there is a credite card option and that's why i am not able to download any free application for iphone,.....so,.....what i do about this problem..???

    You can create an Apple ID without a credit card by following this guide exactly: http://support.apple.com/kb/ht2534.  Note that you have to start by downloading a free app, then create the ID.

  • TS1292 Please help me for, I don't have any code to redeem applications or to update application

    Please help me for I don't have any code to redeem application or update applications

    What 'redeem code' are you expecting, and why do you think that you need one ? iTunes gift cards are country-specific (they can only be redeemed/used in the country in which they were issued), if they aren't available in your country then you won't be able to get one. You shouldn't need a gift code in order to update an app.

Maybe you are looking for