Why Value Of Selected Row Stays The Same In Textfield
May 18, 2014
try {
System.out.println("1");
int row = jTable4.getSelectedRow();
System.out.println("row");
String str = (jTable4.getModel().getValueAt(row, 0).toString());
[Code] .....
I select the first row the value is 0
I select the second the value is still 0
View Replies
ADVERTISEMENT
Nov 13, 2014
Write a program to simulate this airport's operation. You might assume a simulated clock that advances in one-minute intervals. For each minute, generate two random numbers: If the first in less than LandingTime /60, a "landing arrival" has occurred and is added to the landing queue, and if the second is less than TakeOffTime /60, a "takeoff arrival" has occurred and is added to the takeoff queue.
Next, check whether the runway is free. If it is, first check whether the landing queue is nonempty, and if so, allow the first plane to land; otherwise, consider the takeoff queue. Have the program calculate the average queue length and the average time that an airplane spends in a queue.
I have most of the code done as you can see below:
* Queue Interface: Queue.java
* Queue Implementation: ArrayQueue.java
* Demo Program: Airport.java
Right now, I am stuck on the first calculation which is trying to figure out the average size of the landing queue. For some reason, as you can see at the bottom of my demo program, the average always comes out to be 0.0 and I'm not sure what's wrong.
Secondly, how to calculate the average time a plane stays inside a queue for.
View Replies
View Related
Sep 16, 2014
Getting this error message.
non-static variable Text1 cannot be referenced from a static context
Text1 - a TextField on Form
View Replies
View Related
Feb 19, 2014
String sql = "SELECT * FROM user WHERE username =? and password =?" ;
pst = conn.prepareStatement(sql);
pst.setString(1, username.getText());
pst.setString(2, password.getText());
rs = pst.executeQuery();
if(rs.next()){
do somethig;
{
I have 2 textfield that take username and password, on the database thete is a user table
id username password name surname
1 test test test test
people put username and password to the textfield like test test and they logon,but when they write username = TESt and password = teST they can logon too,there is no TESt user on the database or teST password, is the textfield making lowercase all text. or pst.setString(1, username.getText()); is this code changing the text?
View Replies
View Related
Jun 29, 2014
When in panel2 i type something in the search bar and then i move mouse cursor to panel1 and try to edit a JTextField input for example as in the picture 0.0 nothing happens but the mouse cursor is correctly show up in the JTextField.. What seems to solve the problem is to click anywhere outside of the application window.. but of course this is not a solution !
View Replies
View Related
Apr 2, 2014
I am working on a keypad for a phone app for school. I cannot get the numbers from the keys to show up in the textField. I have made multiple tweaks, but think maybe my case statement is the problem?We did a calculator application in the class, so I have based my code off of that. Although the telephone keypad seemed much simpler to code, I can't seem to get the numbers to show up.
public void actionPerformed(ActionEvent e) {
//test for button clicks
foundKey = false;
//search for clicked key
for (int i=0; i<keys.length && !foundKey; i++)
[Code] ....
View Replies
View Related
Jan 25, 2014
I have 1 textfield and 1 button on a JFrame and having 10 such frames stored in ArrayList al and getting the JFrame instance from traversing the ArrayList at execution time ,So is there a way to access textfield using JFrame instance or i have to name the textfield diffrently 10 times for each frame .
View Replies
View Related
Nov 14, 2014
Trying to make a swing box where you can type in string data to the text field and a button. I want the string data to be added to a list everytime you press the addbutton.
Here is the code:
PHP Code:
package GUI;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.List;
import javax.swing.JButton;
[code]....
View Replies
View Related
Apr 28, 2014
How to use validation on a label or textfield in java.
I have a textfield and i want that only username with @ sign will be taken by the program or gives an error.or a textfield that can only take numeric values or whatever the developer wants to take from user..
View Replies
View Related
Feb 13, 2014
I need to set a limit when a textfield is typed, I don't know where to start to do this validate.
Any way to do it. or can you take me to the correct path.??
View Replies
View Related
Jul 10, 2014
How to do this <not in sql> .
View Replies
View Related
Apr 20, 2014
I have a Panel in JFrame which consists of a TextField. I want this text field to be initially focused when GUI starts so that i should not have to first click in it before writing something.
I've tried:
textField.requestFocus();
textField.requestFocusInWindow();
textField.grabFocus();
but of no use. What should i use ?
View Replies
View Related
Jun 8, 2014
I am having a small JavaFX program where I try to set a value to TextField. Below is the part of FXML file and highlighted is the Textfield ....
fxml file
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="185.0" prefWidth="598.0">
<children>
<TextField fx:id="actiontarget" editable="true" layoutX="146.0" layoutY="73.0" prefWidth="198.0" text="" />
[Code] ...
I want to display a string value to that text field.
So, I am using that fxid (actiontarget)
But actiontarget.setText (pathofFile) is not working .
Nothing displays and no value sets for the Text field.
How can I set value in that text field through above code.
View Replies
View Related
Mar 19, 2015
How to use the textformater class together with a TextField. I need to filter and format a currency value in a TextField an try it with the text formater, but I'm not really successful at the moment.
View Replies
View Related
Jan 13, 2014
package name;swing library found in javax called to use the graphical contents.
import javax.swing.*;
//creating the contents for the calculator
public class calc {
JButton btn1= new JButton("1 ");
JButton btn2= new JButton("2");
JButton btn3= new JButton("3");
[code]....
I have tried different sizes for the 'TextField' but when I change the size, the position changes instead of the size itself.
View Replies
View Related
May 30, 2014
I have a problem about read text file in array and show it to textfield :
Content the file:
I want read line 1 to textfield 1, line 2 to textfield 2,....
View Replies
View Related
Jul 12, 2014
How can I make the numbers to stay at the textfield of my calculator instead of disappear like when I type 1 then hit the + sign the number 1 disappears from the textfield I would like to have this (1+1) showing in the text field and also if try to press only + , * , - , / to show error.
this is my code
public class Calculator extends javax.swing.JFrame {
private double TEMP;
private double SolveTEMP;
Boolean addBool = false;
Boolean subBool = false;
Boolean divBool = false;
Boolean mulBool = false;
String display = "";
[Code] ....
View Replies
View Related
Dec 12, 2014
What would be the simplest way of creating a Dialog that can add TextField dynamically based on whether a radio button option from the dialog box is selected. I thought of JOptionPane.showMessageDialog and adding a JComponent though I would not be able to add a TextField on the fly and I would not be able to add ActionListeners. The dialog would initially contain some radio buttons, labels and textfields.
View Replies
View Related
Jun 2, 2014
I've done a lot of hardwork for this assignment but I don't know what's why the second textfield which is for output is blank.
All I want is to get the input from user in textfield a and display it in textfield b in lower case.
public void KeyPressed (KeyEvent ke) {
String letter2="";
if(ke.getKeyCode()==KeyEvent.VK_A)
{
letter2=letter2+"a";
btextfield.setText(letter2);
[Code] .....
View Replies
View Related
Nov 30, 2014
I'm currently writing a small program, where I need to save data into a Defaulttablemodel in a jTable.I have to save the name, a number and the email-adress.I added a button which opens a new JFrame and there I need to change the email and/or the name.My current solution is far from good: No matter which row I select, i can only update the "newest" row (last created). How can I visualize the values of the selected row (out.println// or whatever) so I can go further and overwrite these values.My Code when I click on Update:
int zeilenwahl = jTableStudenttab.getSelectedRow();
// System.out.println(jTableStudenttab.getSelectedRow());
if (zeilenwahl != -1) {
this.setVisible(false);
new Bearbeitung().setVisible(true);
} else {
JOptionPane.showMessageDialog(rootPane, "Zum Bearbeiten Zeile auswählen");
}
Here is where the mistake is (probably)
public Bearbeitung() {
initComponents();
jTextFieldvorname.setText(Student.vorname);
jTextFieldnachname.setText(Student.nachname);
matrikelstring = matrikelstring.valueOf(Student.matrikelnummer);
jLabelmatrikelwert.setText(matrikelstring);
jTextFieldemail.setText(Student.email);
}
View Replies
View Related
Nov 8, 2014
I am making an edit page and I want to populate my drop down menu with things that were already selected. For example, if i want i click to edit my favorite food it will be populated with the one the user previously selected. How do i go about doing this? [URL] ....
View Replies
View Related
Oct 9, 2014
I was wanting to select an item in a comboBox and display it in a text field but all it's doing at the minute is retrieving the first item in the comboBox and placing that in the txt field
String value = (String) comboBoxEnv.getSelectedItem().toString();
if(comboBoxEnv.getSelectedItem()!= null){
txtTo.setText(value);
View Replies
View Related
Apr 16, 2014
If I have a ComboBox and I want to copy the selected value to textfield. How can I do it?
View Replies
View Related
Mar 9, 2015
I just learned about 2D arrays and am still trying to get a grasp on the concepts. I'm a little confused by how you return all the values in a row to add up and display the sum if the row is entered by the user.
import java.util.*;
public class RowSum {
public static void main(String[] args) {
Scanner s = new Scanner (System.in);
int userpick = 0;
int sum = 0;
[Code] .....
View Replies
View Related
Nov 16, 2014
I need to somehow compare the random color chosen from the color array and the random name selected from the name array. I know how to compare to entire arrays of the same type such as integers. How to go about this with two different arrays. I thought maybe I could parse the color array selection to a string but had no luck with that either.
Problem #1: Design and implement an Applet that plays a simple game to teach a child to read. The game displays a picture on the left hand side of the Applet and a word on the right hand side. Below the pictures are two buttons for the child to click--one if the word matches the picture, the second of the word doesn't match the picture. Display an error message if the child is incorrect (or play a sound). Display (or play a sound) display words of encouragement if the child chooses correctly. Add a loop so the child can keep playing.
import java.applet.Applet;
import java.awt.*;
import java.awt.event.*;
import java.util.ArrayList;
import java.util.Random;
[Code] ....
View Replies
View Related
May 13, 2014
import java.awt.*;
import java.util.*;
import java.awt.FlowLayout;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.JCheckBox;
import javax.swing.JPasswordField;
[Code] .....
How can I make the JTextField to popout when a JCheckBox is selected? I tried putting it under the general if statement and under the if statement which is inside the general if statement.
View Replies
View Related