Swing/AWT/SWT :: Combining Two JFrames Into One JFrame?

Mar 20, 2014

All I need to do is show in just one JFrame the two combined JFrames. One JFrame namely leftPanel will appear to the left or west and the other namely rightPanel to the right or east using BorderLayout. I already did creating them first as JPanels or as internal classes and subsetted them in one JFrame but that didn't work because it looked messy. And now I've created them as two separate JFrames, compiled separately, and tried to subset them as one in the JFrame. I didn't add any functionality to this program because all I intend to do is to show those two JFrames together in one JFrame. Here's the code:

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class dirtyIceCream extends JFrame {
leftPanel westPanel;
rightPanel eastPanel;
public dirtyIceCream()

[code].....

What am I missing or did I code anything wrong here? Or should I use NetBeans IDE for anything as complicated as this?

View Replies


ADVERTISEMENT

Swing/AWT/SWT :: Communication Between JFrames

May 23, 2014

I'm writing a small program in Java to simulate a shopping cart. A shopping cart has an array og objects Item. As a console application, my program runs.But, in the GUI version, I have some issues. In class MainMenu I create a ShoppingCart object, named "cart"(line 103)In class AddItemMenu I create an Item object, and I want to add it in my ShoppingCart object "cart".BUT, AddItemMenu cannot "see" variable "cart".

//MainMenu.java
package shoppingcartgui;
public class MainMenu extends javax.swing.JFrame {
public MainMenu() {
initComponents();

[code]....

View Replies View Related

Swing/AWT/SWT :: How To Create New JFrames

Sep 28, 2014

I'm just messing around with JFrames and stuff like that (like previous posts). There is no ultimate goal here, which I realize violates that I should write everything down beforehand and know what I'm trying to accomplish. My question is, does this look ok? I'm going to start doing if...else statements but don't want to move on if I think this is bad programming. Any tips on how I create new JFrames under and if...else statement?

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;

[code]...

View Replies View Related

Swing/AWT/SWT :: Sending Serializable Object Between Two JFrames

May 2, 2014

I have two JFrames the first one is a log in screen where i log in to the log in server that i made using RMI . If the log in succeeds i send the user object witch is Serializable to the second JFrame.

The user object is received from the server. This object contains all the information needed in the second JFrame. This second JFrame is made inside the first one and i defined a method with witch i send this user object to the second frame.

Now the problem arises , while inside this method i am able to read all the data i need from the user object. At the end of the method i save the reference of this object in a new User object defined in the second JFrame ,because i need it later on.

But soon as this method finishes , for some reason my reference to the object becomes null , and i cant use it later on.

View Replies View Related

Swing/AWT/SWT :: Multiple JFrames - Thread And Progress Bar

Mar 29, 2014

I'm struggling with a small project. I have 2 jFrames. The first frame has a button that...

- Display's the second frame containing a progressbar
- Starts a heavy processing thread

I need to update the progressbar on the second jFrame, from a thread started on the first jFrame.

I have 2 problems:

- How do I update the progressbar?
- When the button is clicked, an empty second frame is displayed with no controls. The controls are only rendered/shown, after the large thread process is finished...

I've attached to this post a small screenshot, showing the main idea ...

Source code:

Button action on the first frame:

private void btnGoActionPerformed(java.awt.event.ActionEvent evt) {
Progress progress = new Progress(); // The second frame
progress.setVisible(true);
clsProcess myProcess = new clsProcess(); // The thread process
myProcess.start();

[Code] ....

View Replies View Related

Combining Code Into A GUI Interface

Sep 27, 2014

i have this code that I need to input into a GUI interface. how to start mixing the two together.

import java.util.Scanner;
import java.util.Date;
import java.text.ParseException;

[Code]....

View Replies View Related

Combining JMenuItem And KeyListener

Jun 9, 2014

I have a JMenuItem "Find" in the Edit Menu. I want to add a shortcut key to the JMenuItem.

For Find for example i want to use Ctrl + F

Here is my 'Action' for 'Find' which can be used via Edit->Find. It works.

Find = new AbstractAction(){
public void actionPerformed(ActionEvent e){ 
String word = JOptionPane.showInputDialog(new MainWindow(),"","Find",PLAIN_MESSAGE);
new WordSearcher(textArea,word);
}
};

WordSearcher() is a class i am using to search the word

Now i want to add a KeyListener for ctrl+F, for doing the same purpose. Even this one works.

private KeyListener k1 = new KeyAdapter()
{
public void keyPressed(KeyEvent e)
{
if(e.isControlDown())

if(e.getKeyCode()== KeyEvent.VK_F)

[Code] ....

But the problem here is i have to write the same code twice. Is there some way by which I can Use the already written Action Find in the KeyListener.

View Replies View Related

Combining Characters Into A String

Sep 10, 2014

So what my program is supposed to do is take a number inputted by the use and then take a phrase. It then changes that phrases letter by the number inputted prior for example if you type in 2 as your int and Hello as your phrase you should get JGNNQ, which i can do. but the problem is that when i run it, it outputs like this:

J
G
N
N
Q

As separate characters how can I combine those characters in 1 string so it looks like JGNNQ? this is my code

import java.util.Scanner;
public class Dcod_MAin {
private static final Object[] String = null;
public static void main(String[] args){
Scanner input = new Scanner (System.in);
System.out.println("What is the day of the month");
int shift;

[Code] ....

View Replies View Related

Combining Switch Statements To If / Else Decisions

Mar 8, 2014

Combining switch statements into if...else decisions? I'm basically trying to teach myself java and am at the point where I have to combine two user inputted values into if...else statements, only I don't really grasp how to do so. (This stuff is soooo addictive.) I'm trying to let the user input the type of residence they have, how many hours they are usually home, and then recommend a pet based on that. I just don't get how to input both selections they make in if...then statements. I get a bunch of errors as soon as I start the if...else part.

import java.util.Scanner;
public class PetAdvice
{
public static void main(String[] args)
{
int houseType;
int hourHome;

[Code] ....

View Replies View Related

Combining Multiple Uploaded Documents Into One Report

May 28, 2014

I have developed an application using Java JSP and PostgreSQL database which inputs data from users including multiple file uploads in different formats (MS Word, Excel, PDF etc.). The uploaded files are also stored in the database.

My client wants the software to print a report in PDF format which includes all user data entered (in a defined format) along with all the uploaded documents as appendices.

How the system can include all uploaded files into one PDF report?

View Replies View Related

Combining Multiple Uploaded Documents Into One PDF Report

May 28, 2014

I have developed an application using Java JSP and PostgreSQL database which inputs data from users including multiple file uploads in different formats (MS Word, Excel, PDF etc.). The uploaded files are also stored in the database.

My client wants the software to print a report in PDF format which includes all user data entered (in a defined format) along with all the uploaded documents as appendices.

How the system can include all uploaded files into one PDF report?

View Replies View Related

Swing/AWT/SWT :: Add A Rectangle To JFrame?

Apr 13, 2014

Is there a way to simply slap a rectangle into a JPanel (make it appear) with out creating an inner Class or helper Method, all within "Main"? And if not, why?

Making a JFrame is easy.

Adding a JPanel is a snap.

import java.awt.Color;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class TheJFrame {
public static void main(String[] args) {
// TODO Auto-generated method stub

[code]....

View Replies View Related

Swing/AWT/SWT :: JPanel Inside A Jframe?

Apr 9, 2014

I have a Jframe and i want to add inside 4 different jpanel.This is easy.

what is difficult is how can i change them dynamically with 4 other new jpanels and 4 other new jpanels?

I have try with BorderLayout but not working.

It's a wizard like but not the same.

I have a jpanel with jbuttons jpanel with a jtable jpanel with textarea and jpanel with jlabels. All this have to change with other 4 jpanels, where to look?

View Replies View Related

Swing/AWT/SWT :: How To Load Image To JFrame

Jul 23, 2014

How to load an image to a swing application?? I want to load it to myframe(JFrame)..

View Replies View Related

Swing/AWT/SWT :: Setting Size Of JFrame

May 26, 2014

I am rather new to Swing, and I am building a game right now in which I need to display a pop-up window as a reminder for what commands exist within the game. I created a class extending JFrame for this and added all the information I need. However, for some reason, no matter how many different ways I try to set the size of this window (setSize(w, h), pack(), using a different layout, adding the compnents to a JPanel first and setting the preffered size of that, then adding the JPanel to the JFrame), it doesn't work. Instead of a window of my requested size, I get a tiny, maybe 100 x 100 pixel window that needs to be resized in order for its contents to be visible.

import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.GridLayout;
import java.awt.Toolkit;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

[code]....

View Replies View Related

Swing/AWT/SWT :: Why Jpanel Is Not Inserted In Jframe

Apr 4, 2014

I pick this code from Head first Java

package GUI;
import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.Graphics;
import java.awt.Color;
public class gui5 {
int x=0;
int y=0;
public static void main(String... x) {

[code]...

but just a Jframe is appearing no Jpanel no green color circle?What is wrong with code

View Replies View Related

Swing/AWT/SWT :: How To Change JFrame Size

Jan 14, 2015

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

[Code].....

View Replies View Related

Swing/AWT/SWT :: How To Close The Current Jframe

Sep 14, 2014

Following is the code on the click of a button, id like to know how do i close the current jframe on which the jButton4 is currently placed. I know how to send it to the next Jframe i.e JobCard. But need to close the current one. I tried using this.setVisible(true); But it does not work.

private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
this.setVisible(false);
JobCard jobCard = new JobCard();
jobCard.setVisible(true);
}

View Replies View Related

Swing/AWT/SWT :: Put A Web Page In JFrame Application

Apr 16, 2014

I need to put a Web Page in my JFrame application , I got a lot codes on the internet and could implement without problems , but the problem is that this code has an ugly page as hell, with colored all wrong and with a very poor quality , one of code I used was this :

* import javax.swing . ;

{ public class SwingWebPage
    public static void main ( String args [ ] ) throws Exception {
        JEditorPane website = new JEditorPane ( " http://www.google.com/ " ) ;
        website.setEditable ( false) ;

[code]...

If you test , you'll see that the page is displayed in the JFrame is horrible.

View Replies View Related

Swing/AWT/SWT :: Cannot Instantiate JPanel And Add It To JFrame

Mar 27, 2014

I am try to do an application based in multiples JFrames, each one with its particular responsibilities, and use one JPanel as a menu with buttons that connect one JFrame to another, But this menu is instantiated at run in view (layout made by netbeans) the Main Jframe appears with its internal JPanel, but the instantiated JPanel does not appear or does not show it's buttons. (notice only run method in the second class):

JPanel Menu that will be used in all alone JFrames of application:

public class MenuSuperior extends javax.swing.JPanel {
public MenuSuperior() {
initComponents();
} private void initComponents() {

[Code] .....

View Replies View Related

Swing/AWT/SWT :: How To Disable Resizing Of Jframe

Feb 7, 2014

I want my jrame should not be resized when clicking on maximize button of window.and for this i have put setResizable(false)in the constructor of class which extends Jframe.

View Replies View Related

Swing/AWT/SWT :: Copy A Graphics On Jframe?

Apr 28, 2015

I want to know know to copy a rectangle on my jframe and paste it in another location on the same jframe.

View Replies View Related

Swing/AWT/SWT :: JFrame Close Methods?

Sep 24, 2014

I didn't know about right method for correct close operation for JFrame component or kill the object. I found out few, which of them you are using usually???

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(false);
JFrame.DO_NOTHING_ON_CLOSE.
System.exit(0);

View Replies View Related

Swing/AWT/SWT :: Buttons Not Showing On JFrame

Aug 30, 2014

This is right from a book I'm reading but it doesn't work. The problem is to write an application that lets you determine the integer value returned by the InputEvent method getModifiers() when you click your left, right, or middle mouse button on a JFrame.

This is the code copied directly from the book. What is missing:

import java.awt.event.InputEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.JFrame;
public class JLeftOrRight {

[Code] ......

View Replies View Related

Swing/AWT/SWT :: JPanel In JFrame - Components Do Not Appear

Apr 4, 2014

I trying to replace original (and empty) JPanel in JFrame with my own made one, components does no appear right, when I pass the mouse first button appears:

MainViewClass:
...
private void initComponents() {
...
MenujPanel = new MenuSuperior();
MenujPanel.setBorder(
BorderFactory.createTitledBorder("Dados Pessoais"));

[Code] .....

Here is the video:

View Replies View Related

Swing/AWT/SWT :: Adding Timer To Jframe

Jul 2, 2014

I am trying to write a game which needs timer beginning from zero to.... , and show it in my jframe. How can I do that?

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved