Swing/AWT/SWT :: JTextField Automatically Highlighting Current Values

Mar 10, 2014

I want to have JTextField automatically highlighting the current values for overwriting when the box is selected. Is there a way to do this? It seems like something that might occur in an action listener.

View Replies


ADVERTISEMENT

Adding Values Within Jtextfield?

Mar 25, 2015

I have a supermarket checkout line where i have a list of available products on the left and then a basket on the right with the products in. The products are listed in an array, here is the product class

public class Product {
private String name;
private double weight;
private double price;

[Code] ....

with getters and setters excluded, and the list these are put into

public class productList extends DefaultListModel {
public productList (){
super();
}
public void addProduct (String name, double weight, double price, int code){
super.addElement(new Product(name, weight, price, code));

i have the price for each product to be displayed in a text field with the following code

addBasketItem = new JButton();
getContentPane().add(addBasketItem);
addBasketItem.setText("Add >");

[Code] ....

defaultCheckoutList contains my available items and defaultMainList is the basket, with mainTillPrice being the jtextfield.

This works to get the price however it just replaces each time i make a new entry with the price for the next item, i want a total of the price of all the items i have added, but not sure how.

View Replies View Related

Retrieving Values From A JTextField

Jan 18, 2015

I currently building a hotel reservation system, and I'm having issues with retrieving and setting other values from a JTextField.

What I'm trying to do is to retrieve the value that was inputted into a textfield, and then setting that value to a string in another class.

In here, I'm trying to retrieve values from the JTextField:

@Override
public void actionPerformed(ActionEvent event) {
GuestInfo gi = new GuestInfo();
if (event.getSource()==roomView)
{
roomViewFrame.setVisible(true);
roomViewFrame.setSize(1000, 600);

[Code] .....

View Replies View Related

JTextField - Enter Some Values For Object

Mar 29, 2014

I'm working with a project there ill need to enter some values for an Object and for this i'm using JTextField. However some of the variables are of the types double, int and bool. Is there a different method of reading thees types?

for example:

double playTime = this.playTime.getText();

This won't work because playTime is of type double and .getText(); takes a String.

How will i handle this? Id rather not convert from String to Double if its possible.

View Replies View Related

Swing/AWT/SWT :: Repaint Method Is Automatically Erasing Old Circle?

Feb 19, 2014

This code is shown to eliminate "smearing":

public void paintComponent (Graphics g) {
g.setColor(Color.white);
g.fillRect(0,0,this.getWidth(), this.getHeight());
g.setColor(Color.green);
g.fillOval(x, y, 40, 40);
}

I had done all the previous code (in my own style) and found that the background rectangle was either being redrawn on its own, or there was something else removing the old circles from the screen. I then typed in the code from the previous page exactly as it was, to see if I had some change in syntax that would cause this, and it did the same thing.

Here's my code:

import javax.swing.*;
import java.awt.*;
public class SimpleAnimation {
int x, y;
private static final int HEIGHT = 600;
private static final int WIDTH = 600;

[Code] .....

Is this because I'm using JRE7? I can't find any documentation that indicates the repaint() method has changed since Java 5.

View Replies View Related

Assign Current Null Value To Current Date?

Mar 6, 2014

How can i assign current  null value to current date, I only what to assign this if the current value coming from database is null otherwise i must use value from database

public static String getDate(Calendar cal){
        return "" + cal.get(Calendar.DATE) +"/" +
                (cal.get(Calendar.MONTH)+1) + "/" + cal.get(Calendar.YEAR);
    }
try {

[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 :: Application Text Font Type Has Been Changed Automatically

Mar 9, 2015

I'm working on Java-GUI implementation in Ubuntu. Used font-type in the application throughout is "Arial". At earlier stage of application it was the same font-type("Arial"). As the implementation grew the font-type has been changed automatically to another font type. It seems Serif-font type.

Now I could not able to figure out the problem; why it is so.

Note- I used HTML code also for setting font style of Dialog box messages and buttons. This is the only point which I figured out. Can it is ?

View Replies View Related

Syntax Highlighting In Editor?

Jun 11, 2014

Here is the original code I found on StackOverFlow. It highlights some specific words in a JTextPane.

import javax.swing.*;
import java.awt.*;
import javax.swing.text.*; 
public class ColorChangeWhileTyping extends JFrame{
private int findLastNonWordChar (String text, int index) {
while (--index >= 0) {
if (String.valueOf(text.charAt(index)).matches("W")) {

[code]....

I dont know for some reason it doesnt work correctly. The colour goes away after I press Space to write the next word.

View Replies View Related

Swing/AWT/SWT :: Autocomplete In JTextField

Apr 2, 2014

I have been reading several suggested solutions for implementing autocomplete for a JTextField. However, the documentation is a bit confusing to me. It seems like they mostly require switching to a JComboBox. Can I or can I not continue to use a JTextField and implement an autocomplete feature? I also saw what I thought was a built-in autocomplete "decorator" for swing objects (although it was not clear if it can be used for JTextField) but most of the implementations seem to start from scratch. Any simplest way to implement this (assuming those 2 conditions are not mutually exclusive)?

View Replies View Related

How To Create JavaScript To Find Current Month And Current Day Of Month

Mar 17, 2015

I want to be able to use the current date to solve a math problem, specifically as follows:If today is March 17, the math problem of the day should be:

(Month times Day of Month) + 99 = Answer of the Day

(3 x 17) + 99 = 150

How can I create a java script to find the current month and the current day of month, multiple those two together, then add 99 and display the answer as a result.

View Replies View Related

Swing/AWT/SWT :: Inputting One Letter Into JTextField

Mar 9, 2014

I'm writing a java program in eclipse of a tic-tac-toe game. I have to create it using JTextField's only I'm having trouble where the JTextField will only accept one letter and will only accept X and O is there any particular way to do this I started off with this piece of code

String text=tf1.getText();
if(text.length()>1) {
System.out.println("this is not allowed");
tf1.setText("");

But it doesn't work so is there something I'm missing....

View Replies View Related

Swing/AWT/SWT :: How To Get Data From JTextField Over To JTable

Jun 20, 2014

I am trying to get the data entered in a JTextField into a JTable but not clear on how. The LeftPanel is where the button is located and the RightPanel is where the JTable is. I want the actionPerformed to update the row of the JTable but I can't figure out how. There is another class that controls the GUI but did not think it was necessary to include. Also, I am aware that I am getting an error at the addRow line, can't seem to alleviate it.

public class LeftPanel extends JPanel {

private static final long serialVersionUID = -2311952438693382407L;
private RightPanel rPanel;
public LeftPanel(){
Dimension size = getPreferredSize();
size.width = 250;
setPreferredSize(size);

[code]....

View Replies View Related

Swing/AWT/SWT :: How To Make JTextField Editable

Jul 10, 2014

I'm having a hard time finding out the way to make JTextField editable. In what circumstances it can be disabled to write? [even the text in the field can't be selected, not to mention being uneditable. I did the followings to make it editable.

1. In its Properties panel(frame or whatever), checked the "editable" item.
2. In the code I made it run the code below :

void makeFieldsEditable(Boolean flag) {
Left_Name_field.setEditable(flag);
Left_Name_field.setEnabled(flag);
...
}

Is it related with the properties of the control(JTextField)'s surrounding panel, or even the largest containing frame? Using Netbeans ....

View Replies View Related

Swing/AWT/SWT :: How To Get One Value From JTextField To Show In Another Classes

May 17, 2014

I want the text that the user inputs into the JTextField in the user input panel to be what shows up in the JTextField in the totals panel.

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Scanner;
import javax.swing.*;
import javax.swing.border.TitledBorder;

[Code] ......

I know that I will need to take advantage of the get and set methods, could I get an example of this? How to write the code.

View Replies View Related

Swing/AWT/SWT :: Unwanted Echo Of JTextField

Oct 29, 2014

I recently began writing a much larger program than I will show. I have boiled the problem down to this SSCCE.

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;
class TextButton extends JRadioButton

[Code] ....

What i wanted was a JRadioButton with no label carrying around a JTextField. When I added a restore configuration feature in the real program, i found that the text destined for the JTextField was being echoed into the JRadioButton.

Perhaps it is obvious but i sure don't see what I am doing wrong. I am using Java 1.7.0 for development if that makes a difference.

View Replies View Related

Swing/AWT/SWT :: How To Make Installer That Will Start Automatically As Soon As Windows Start

Oct 16, 2014

I am new to making an installer so far i have made only one and i used "install creator"

I just make a watch (clock) application and i want when the windows start its also starts automatically except if it is closed by the user

just like widows clock widget.

View Replies View Related

Swing/AWT/SWT :: How To Get Text From Jtextfield And Transfer It Between Classes

Apr 8, 2014

Im writing a program that records the score in a dart game. One component of the program is a stage where players enter their name.This information needs to be displayed in another part of the program. These two components are in two different classes. My problem is I dont know how to get that information from one class to another.

Im using Jtextfield in Jframe to record the information.

View Replies View Related

Swing/AWT/SWT :: Adding Items To JComboBox Taken From JTextField Listener

Nov 11, 2014

I need to take the value of what's typed in my JTextField, and once the submit button is clicked, I want to add that string to my JComboBox list items.

Depending which RadioButton they selected, I need to put the team in HOME or AWAY teams, and so on and so on, until they continue clicking submit.

View Replies View Related

Swing/AWT/SWT :: JTextField Size Changes With JLabel Text Length

Nov 11, 2014

I want to create 3 JTextFields in a row with all being of equal size.But my first Text field gets so wide than the other two.After adding each component at a time and seeing what causes the problem I realized that if I type a long text for the JLabel that's when this problem occurs.If I reduce the length of the text in the JLabel JTextFields get into the sizes I want. Here's my code

import java.awt.*;
import java.awt.event.*;
import java.lang.Math;
public class Calculator1 extends JFrame {
JTextField value1=new JTextField("0");
JTextField value2=new JTextField("0");

[Code] ....

How can I stop the JTextFields changing size when I change the JLabel label1's text length...

View Replies View Related

Swing/AWT/SWT :: How To Populate All Items In JTable When Corresponding JTextfield Is Empty

Aug 3, 2014

I am designing a advanced search option in a java project with sqlite in NetBeans. there are 5 different JTextfields and 5 columns, I want to populate JTable with corresponding matching criteria. If a JTextfield is empty then it should select all items of that column.

query i was using is:
String val1=txt_billing2.getText(); //five input fields
String val2=txt_station2.getText();
String val3=txt_invoice2.getText();
String val4=txt_amonth2.getText();
String val5=txt_umonth2.getText();

[code]....

but when i leave a JTextfield empty it shows no data in JTable. only method i know is to use if else conditions but that generates 5!= 120 conditions!!!

View Replies View Related

Swing/AWT/SWT :: Add JTextField And Additional Output Within ComponentEvent Handlers

Jan 30, 2014

Using the code from the Java Docs (listed below) I am getting behavior that was a bit unexpected. The only changes were to add JTextField and additional output within the ComponentEvent handlers. Run the code and when the frame appears, think of each side as North, South, East (right side) and West (left side) as you are looking at it. This was run using JDK 1.7.0_25.

Run the code.

1 - Click the East edge (right) of the frame and drag to be wider or more narrow. Only the "Resized" is executed for all components which makes sense.

2 - Click the West edge (left) of the frame and drag to be wider or more narrow. This time "Resized" is executed for all components EXCEPT it is "Moved" for JFrame. Why is it "Moved" here for JFrame but not in Step 1?

3 - Click the South edge (bottom) of the frame and drag to be taller or shorter. This time only 2 components are affected. JPanel is "Moved" while JFrame is "Resized".Why isn't both JFrame and JPanel just "Resized"?

4 - Click the North edge (top) of the frame and drag to be taller or shorter. This time only 2 components are affected again but the output is slightly different. JPanel is "Moved" while JFrame is BOTH "Resized" and "Moved".

There just doesn't seem to be consistency here. What are the guidelines or criteria for when these Events are to be executed?

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class ComponentEventDemo extends JPanel
implements ComponentListener,
ItemListener {

[code]....

View Replies View Related

Swing/AWT/SWT :: How To Make JLabel Hyperlink Change Depending On JTextField

Jul 30, 2014

This is a part of my program. When the user enters "Exam Schedule" in the JtextField and clicks the add button I want the link to change to a link that opens a local pdf file. And if the user enters "Academic Calendar" the Jlabel will be set to another link. So far this works fine but the problem is that if you erase the textfield and enter another value the link of the previous value will still be there.

public void actionPerformed (ActionEvent e){
if (e.getSource ==add) {
if (text.getText().equalsIgnoreCase("Exam Schedule")){
link1.setText(text.getText());
link1.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));

[Code] .....

View Replies View Related

Using Jtextfield On Jframe (Swing) To Enter Search Terms In Different Class

Dec 4, 2014

I have a swing jFrame set up with a control group which contains 3 radio buttons.

When one is clicked it sends its label to a jtextfield in a different class i have code parsing text by a term

Java Code:

Scanner s = null;
try {
s = new Scanner(new BufferedReader(new FileReader("/Stage_One.txt")));
s.useDelimiter("*");
String total = (s.next());
Pattern p = Pattern.compile("[]+");

[Code] ....

I just need to know how to access the jframe variables (textfields, panels and such) so i can use their inputs in code to filter a text file.

View Replies View Related

Swing/AWT/SWT :: Error At Class Name - Type JTextField Must Implement Inherited Abstract Method

Oct 27, 2014

This code is directly from Swing: I'm using Eclipse and keep getting an error on line 10 saying :

"The type JTextField must implement the inherited abstract method ActionListener.actionPerformed(ActionEvent)."

import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;

[Code] ......

View Replies View Related

Swing/AWT/SWT :: Replacing Regular Writing Cursor For System Mouse Pointer When Hovering JTextField?

Apr 23, 2015

When I hover over a JTextField, I want to change the writing cursor from this to the system regular mouse pointer. How could I do it?

View Replies View Related







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