Multi window applications

Hi,
I am messing around with swing and designing an app that will consist of multiple panels.
I am not sure how I should go about this. What I intend to do is have various panels in my app and as the user creates different events I want a panel that is occupied with say label and radio buttons to change to a so that it displays a text field with some results in. Then maybe after another event it changes back to the labels and radio buttons and has updated information. Most of the time the GUI will look the same except for different panels changing back and forth.
So, my question is how do I achieve this? do I toggle visible to true and false and build up a hierarchy within my panel or do I null these objects and then re-create them as need with the new info?
I have used various swing components before but never like I intend. I know I could just try different things but I would be grateful if someone could tell me the correct way from the start.
Thanks
Mike

Mike, there's a Swing forum. People who answer there are good at answering Swing questions, unlike people like me who are pretty mediocre at that. I suggest you post there.

Similar Messages

  • How can i use multi-windows technology in JAVA

    I am developing a java application with JBuilder4, and now i want to make a multi-window application,which can be created dynamically, also the window can contain the button and line drawing i need.
    Please reply in detail because of my first learning java, thanks.

    You can try JInternalFrame, here is the tutorial:
    http://java.sun.com/docs/books/tutorial/uiswing/components/internalframe.html
    Good Luck!

  • Multi Window AIR Application - How to Call

    Hi All,
    I am new to Adobe AIR so please forgive my ignorance. I want
    to create a multi-window air flex application. The scenario is like
    I have a window with menu options. When user selects a menu option,
    I have to open another window with corresponding application in it.
    I have created two applications inside a flex project. Each
    application has <mx:WindowedApplication> as its root
    component. My question is how to call the 2nd application from the
    1st one? I tried SWFLoader but does not seem to work. Any help is
    creatly appreciated.

    You only want a single WindowedApplication component in an
    AIR application. For the other windows, use the Window component.
    You can then create this window object in response to the user's
    menu selection. See
    http://www.adobe.com/devnet/air/flex/quickstart/launching_windows.html
    for examples of opening windows.

  • Multi window instances, DSC LabVIEW application

    Hi
    How can I develop a DSC LabVIEW application featuring multi window instances controlled by button (s) press on main (default) front view window? 
    In fact I have a large number of wireless sensors to be analyzed.
    BR,
    Nasq

    Hi Ryan!
    Thanks for reply. Creating multiple VIs is not a bad design option at all. However I fear it could compromise speed of an application which is also running active communication with database sources and a great number of sensors.
    Let me try it. But thanks for suggestion.
    BR
    Nasq

  • Windows Application in Flash

    Hi all ...can we create windows application in FLASH? I am
    creating an accounting application for my home use and i want it to
    have a very cool UI. So can we use Flash to create the front end of
    my application. This application needs to connect to DB and will be
    multi-user. Please help. Thanks so much!!!!
    and cheers!!!

    Adobe AIR.

  • Jdev11g: Has anyone developed a multi -langual application successfully?

    Hi,
    In our application the user can change the language of the application by selecting it from as drop-down-list.
    This works fine if we run the application with embedded WLS.
    But running it on external WLS the language switch does not have any effect.
    We have already filled bug 7588599 for this issue which is also reproduceable from Oracle Support.
    At the moment I do not know a workaround.
    I can't believe that there is nobody out there who has already been successfull with a multi-langual application on external WLS?
    I hope to find a workaround in this forum to avoid waiting for backport patch.
    regards
    Peter
    Edited by: hofespet on Nov 26, 2008 7:18 AM
    repost

    Hi,
    problem is solved!
    Excerpt from the SR:
    Development did find the cause of the problem. The framework does lookup the language files in a specific format. That is the language must be in lower case and not in uppercase. In this case the file system is case insensitive since it is windows, so the exploded app just happened to work since it was finding the file on the file system. When deploying the application the file is being looked up by the jar/zip-finder which is working case-sensitive and thus it cannot find the file "startBundle_en.properties".
    The application should name the resource files exactly how they will be looked up by the application and by the ResourceBundleManagerRT.
    Rename the file "startBundle_EN.properties" into "startBundle_en.properties".
    regards
    Peter

  • Multi user application control data access

    Dear all,
    i am using Oracle Developer Suite 10g and database 10g, windows xp plate form.
    i want to develop multi user application regarding education.
    i have two questions.
    1. i take a start from creating an HR database which have 30 tables.
    this database has 10 users.
    the users will log on from their own schema.
    how they will access the HR schema?
    should i create a public synonym for each table in the HR Schema?
    or should i create a view for each table in each user schema?
    or should i grant select,insert,update etc to each user on HR schema?
    2. i want to control the data access for each user.
    i.e. every student could access his own academic record. each teacher access his own related record, the manager the owner and so on.
    how to accompolish this task? oracle roles are not sufficient for this purpose.
    Your help is highly appriciated.

    How about you start with the basic stuff, like the 2 days developers guide:
    http://www.oracle.com/pls/db112/to_toc?pathname=appdev.112/e10766/toc.htm
    and make it to the advanced developers guide:
    http://docs.oracle.com/cd/E11882_01/appdev.112/e25518/toc.htm
    and work your way through the concepts manual:
    http://www.oracle.com/pls/db112/to_toc?pathname=server.112/e25789/toc.htm
    and everything else which sounds interesting to you in here:
    http://www.oracle.com/pls/db112/portal.portal_db?selected=5&frame=
    As for your first question this should be covered here:
    http://docs.oracle.com/cd/E11882_01/network.112/e16543/authorization.htm#BABHFJFJ
    i want to control the data access for each user.This is also documented:
    http://docs.oracle.com/cd/E11882_01/network.112/e16543/vpd.htm#CIHBAJGI
    cheers

  • Popup parenting issues in multi window

    Hello folks,
    I have a multi-window AIR application - there is one base
    application window, but we currently hide that and use mx:Window
    for all of our application windows. The application allows you to
    open new windows to enable easy drag and drop between different
    areas of content in the app. We use the addPopup method to display
    a custom editor control when working a specific content item. That
    means that you could have multiple windows open and each one
    displaying it's own popup to edit an item that the user if viewing
    in the window. 60% or so of the time, the popups work fine and
    parent to the proper window, but the other 40% of the time, the
    popup will parent to a different window. (I can post a link to a
    screencast demonstrating the behavior).
    The custom editor class has the following method, this is
    called to bring up the editor window. We cache these editors,
    following the advice for memory management by Sean Christmann and
    others.
    public function showOnView(view:UIComponent, mobj:*):void {
    PopUpManager.addPopUp(this, view as DisplayObject, true);
    PopUpManager.centerPopUp(this);
    callLater(_finishShowOnView, [view, mobj]);
    The _finishShowOnView method makes sure the instance of the
    editor is pointing to right model object. None of that touches the
    parent of the popup though.
    Anyone have any thoughts?
    - Brian

    Popup describe is case-sensitiveI haven't had a case sensitivity problem with the pop-up describe - where it works, it works if the name in the code is in either upper or lower case (I am assuming the actual object name is uppercase). However, it still doesn't work properly for objects owned by another user - it only finds something owner by another user if the current user has a private synonym with the same name. Even then describing the synonym name pops up the table details and describing the table with owner prefix pops up the synonym details.
    Ctrl+up-arrow or Ctrl+down-arrow to replace the editor contents from the history is great, but there is no ability to change the shortcut in the accelerators preferenceI agree with the frustration of not being able to change the Ctrl+Up/Down short cuts, but we will have to wait until they can improve it.
    The SQL Worksheet window frequently loses it's syntax coloring ...I haven't had problems with that
    There is no preference setting to control the starting point in the file system for File/Open or File/Save As...The File Open does remember the last four (?) directories that you have opened files from as short cuts, but being able to force it to open a specific directory by default would be good. The preference that Raghu mentioned is the directory where it looks for scripts when running them, rather than opening a file.
    Explore Directory from the Files tab tree doesn't seem to start from where you try to "explore"Like Raghu, I don't know what you mean by Explore Directory
    theFurryOne

  • SQL pricing for Migrating an existing multi-tenant application

    We have a client with an ~10 year old multi-tenant application running on a traditional dedicated hosting environment.  The client is interested in migrating to Azure but only if they can benefit from PAAS features (managed backups, snapshots, scaling,
    etc).
    Their application automatically creates a new SQL database with each new customer signup.  As such, there are 886 databases which would need to be moved.  The total size on disk of all DBs together is only 3.82 GB.  Only 3 DBs are more than
    100 MB.  862 of the DBs are less than 10MB each (794 of those are less than 5MB).
    The way I read Azure pricing, each of these 883 DBs less than 100 GB would cost $5/month.  The only other alternative is to get a VM with SQL server on it -- but I can't see the advantage of that vs. the dedicated host they are already using.
    Is there any other alternative to consider when contemplating an application made up of many small databases?
    Thanks in advance for any advice,
    Jason

    Hi,
    If you have existing applications or workloads you simply want to grab and move to the cloud, SQL Server in a Virtual Machine is the easiest path to realize the benefits of the cloud. If you are looking to innovate and build new relational applications running
    in the cloud or extend parts of on-premises applications into the cloud, SQL Database is the best long-term solution.
    In your scenario, if use azure SQL, you must pay for each database per month, refer to
    http://azure.microsoft.com/en-us/pricing/details/sql-database/for more information about SQL Azure, cost too much.
    About use SQL VM, I suggest you read the following article.
     #http://blogs.msdn.com/b/windowsazure/archive/2013/06/04/the-top-10-things-to-know-when-running-sql-server-workloads-on-windows-azure-virtual-machines.aspx?Redirected=true
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Does ios5 supports multi-window ?

    I want to use multi-window in my ios application.Is it possible?

    Like this?
    http://i1224.photobucket.com/albums/ee374/Diavonex/a15661cf.jpg

  • Multi window feature has gone

    I updated the firefox mobile for Android and as a consequence firefox icon was removed from my galaxy note 2 multi window tray. Is there any method to get this feature back? If not can I reinstall a firefox version that supports this feature?
    Note: I've already tried Firefox 21.0 BETA version. There is no change.

    I've just found out that the developers have removed this because an user reported some icons that appear on screen can block some pixels if application. However, that is ridiculous to remove it. If so , the user must turn multi window feature off. There was no need to remove it.

  • Multi windows on iphone

    Can ios make a multi windows like note II?

    multiple windows would be new but I would LOVE to have the ability to reply to a text from notifications instead of always having to leave the application I am running to reply in message. 

  • Problem on using Crystal Report Viewer on windows application ("specified type is not valid ")

    Hi
    I am having problem on using Crystal Report Viewer on one of my windows application.
    I am not sure how to put the Crystal Report Viewer 11 Control onto the tool box.
    I could found a Crystal Report Viewer control on my computer, but it is version 8.5.
    I have also found another one which is Called Crytal ActiveX Report Viewer, i don't think it is the one I can use. As when I try to load a dummy report on to the Crytal ActiveX Report Viewer, It return an error. "specified type is not valid"
    Please see the Code sample below.
    private sub loadReport()
         Dim r as New ReportDocument
         'v is the name of the Crystal ActiveX Report Viewer Control
         r.Load("C:\Report1.rtp")
         v.ReportSource(r) <---It throw error on this line.
    End Sub
    Could you give me some advice about what have I done wrong, How to check if I have set up the Crystal Report Component correctly in my Visual Studio 2005 Standard edition.
    Thanks in advances.
    Many thanks
    Chi

    VS 2005 Standard and Express editions do not come with Crystal Reports; only the Professional and higher editions will have CR bundled. However, I believe you can purchase CR XI R2 Developer and it will give you the components you need to create a VS .NET 2005 application using the Standard edition.
    -MJ

  • New firefox 10.0 wont let me open mult windows, only tabs

    new firefox 10.0 wont let me open mult windows, only tabs. I have looked at tools/options/tabs and the open new windows in tabs is not clicked. have rebooted computer with no better results

    That issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Can Bootcamp and Parallels share the same Windows applications and data?

    I'm looking at getting an Intel iMac which will let me throw away my old PC - Yeah!
    I will have a couple of Win apps that I will need to hang on to (Quicken - Quicken for Mac is horrible, but that's another tghread). Anyway, can Bootcamp and Parallels share the same Windows applications and data?
    My thought would be to allow my wife to access Quicken from Parallels and not have to reboot. She will only need lightweight access and the overhead of running virtualization wouldn't impact her. I, on the other hand, would want to occasionally boot natively into Windows and run the same application with the same datafile. Is this possible?
    Thanks and looking forward to joining the MacIntel world!

    Thanks for all of the freplies. I suspected that BootCamp and Parallels could not shar ethe same partition, but wanted to verify. To address some of the other posts:
    Re: Quicken vs MoneyDance - I looked at MoneyDance a while back and while it is comparable to Quicken for Mac, it isn't comparable to Quicken for Windows (ergo, Quicken for Mac isn't comparable to Quicken for Windows!). But, as I said, that is a topic for another thread!
    Re: Using Bootcamp/Parallels for only one app: I actually have several apps that I still need access to on Windows. I work with many business applications than only run/are supported on Windows as well as receive some complex Office documents which Office for Mac cannot handle. Quicken (for Windows 2007) was just the best example of a consumer app where I could see wanting access from both OS X and Windows.

Maybe you are looking for

  • How to getLine Details from Invoice Details window inside Service Contracts

    Working on 11.5.10.2 Service Contracts Module. Trying to retrieve Line Details from Invoice Details tab. Service Contracts Authoring > Invoice Details > Line Details. I have tried creating a join to oks_bill_transactions but this returns too many rec

  • Purchase requisition & Purchase order Workflow

    Hi, We have activated workflow for Purchase requistion & Purchase order. Workflow is working fine but the client requirement is to have mail to be triggered to the person who creates purchase requisition or purchase order through workflow to go ahead

  • Wide Report printing issue

    Hello everyone, I have a wide report in pdf and spreadsheet format. It has too many columns. It does not even fit on a legal size paper. I am using reports 10g to develop this report. When I print the pdf format on legal paper, the report is shrunk t

  • Validation Event Handlers

    Hi I have a requirement of creating a user identity in OIM 11gR2 only when few set of attributes say FirstName, MiddleName and Lastname. If this set of attributes are not exist in OIM then only we have to create the user otherwise not. So for this pu

  • Width of web page!

    Is there a way to make the web page expand horizontally to fit the width of the window of your browser?