Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Cabaal

    JComboBox and listners

    I want to populate a JComboBox dynamically. Meaning, when a user clicks on the drop down arrow, a listener fires and calls a method which returns the data for the Combo Box. What listener will do this? The action listener seems to only listen to when Combo Box selection changes. Thanks...
  2. Cabaal

    Internal Frames and JMenuBar

    I figured it out. Of course it boiled down to something simple. I was using some old code and the old code had the JMenuBar added to the content pane. As a result I was getting some odd behavior when I added it to the JFrame. Sorry, thanks for your suggestions though. I appreciate it. Thanks...
  3. Cabaal

    Internal Frames and JMenuBar

    Currently I have a program which uses a JDesktopPane within a Content Pane to display JInternalFrame's. I also have menu bar which is added to the content pane. The problem is as follows. When you move a JInternalFrame, with the mouse, it is allowed to go above or "over" the Menu Bar...
  4. Cabaal

    Swing and a Canvas

    Is there a replacement for a Canvas in Swing? Here is the issue: I have a JInternalFrame the contains a JScrollPane. The JScrollPane contains a Canvas. Problem is when you resize the JInternalFrame the the Canvas will get larger to grow with the JInternalFrame, but never smaller. So once you...
  5. Cabaal

    JFrame to JInternalFrame

    Is anyone aware of the difficulties of transforming a JFrame to a JInternalFrame. Is this as easy as changing the extends class? Any hints are appreciated. I realize this does depend on the actions the JFrame takes, but they are fairly trivial. Thanks. Thanks, Cabaal
  6. Cabaal

    JInternalFrame manipulation

    If a user clicks on the "X" to close a JINternalFrame and the the close operation is set to HIDE_ON_CLOSE is there a way to show that INternal Frame again? I have tried to setVisible, but nothing seems to work. Any suggestions is appreciated. Thanks, Cabaal
  7. Cabaal

    Layout Managers and docking

    Here is a better description of what I want to accomplish: An application that contains many frames. Each frame can be Viewed or not viewed based on user preference. If a user removes a frame, the other frame should expand to fill the void. If a new frame is added, the others should accomodate...
  8. Cabaal

    Layout Managers and docking

    What is the best choice for a layout manager given the following scenario? I have a program that should open one main window. In this case it is a content pane. The main window should then contain smallers sub-windows (JInternalFrame) and allow the user to move them around as they see fit. Each...
  9. Cabaal

    Parent Child relationships

    When designing a BBS an easy way, with Oracle is to use the "connect by" statement. Example: select whatever from table_name start with id = #id_choice# connect by prior id = parent_id Does anyone know if the equivalent statement exists in SQL server? Basically you have each...

Part and Inventory Search

Back
Top