Calculator Is Not Working When Select Option C And E

Nov 19, 2014

This code works perfectly except for option C and E. Why it just returns me to the main menu?

public class BasicStatisticsCalculator {
static final int NUMBER_OF_ELEMENTS=6;
static int[] numbers=new int[NUMBER_OF_ELEMENTS];

[code]....

View Replies


ADVERTISEMENT

JSP :: Form That Has A Drop Down Option For A User To Select

May 28, 2014

I have a jsp form that has a drop down option for a user to select. I would like to know how to have a pre-selected option that has been retrieved from my database or provide a default option if none has been selected by the user. My form allows a user to update a record in my database and what I need to achieve is when a user is updating an existing record they do not have to touch the drop down box if the do not need to change that option.

Here is my current form below form method

="POST" action='UserController?action=edit&albumId=${album.albumId}' name="frmAddAlbum">
<label for="album id">Format : </label>
<select name="action" selected=<c:out value="${album.format}" /> >
<option value="listUser">CD</option>
<option value="listUser">Tape</option>
<option value="listUser">MP3</option>
<option value="listUser">VINYL</option>
</select>

[code]....

View Replies View Related

I/O / Streams :: Select Multiple Files And Uploading Using Single Browse Option?

May 22, 2014

My requirement is - I need to browse the folder and select multiples and upload all the selected files at once. note that here i need to use single browse button ONLY.

View Replies View Related

Cut / Copy / Paste / Delete And Select All Are Not Working

Mar 22, 2014

I am quite new to Java programming. I'm actually taking a class and I have an assignment due tonight. The program below compiles and functions correctly for the most part. It is supposed to be a simple GUI Text Editor with Edit and Format functions. Of the functions under the "Edit" menu, only word count actually works. Cut, copy, paste, delete, and select all are not working.

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import java.util.StringTokenizer;
import java.util.regex.Pattern;

[code]....

View Replies View Related

Clear Sign Not Working On Calculator?

Jan 15, 2014

Here is the code I wrote:

import javax.swing.*;
import java.awt.MenuBar;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class NewCalculator implements ActionListener {
//assign button clicked number and answer onto variables.

[Code] .....

Also what is the code I need to use to do the percentage and square root calculation in the calculation. Cos I am not sure about the sign I am required to use to do the calculation.

The if statement is where the code to make the clear button (C and CE) work.

View Replies View Related

Swing/AWT/SWT :: Restaurant Bill Calculator - JFrame Is Not Working

Sep 5, 2014

Why the JFrame is not working

// Project: RestaurantBillCalculator.java Calculates a table's bill.

// Import statements for different classes
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
import java.text.*;
import java.util.*;
import javax.swing.*;
public class RestaurantBillCalculator extends JFrame

[Code] ....

View Replies View Related

Making Time Calculator Work / Modulo Division Not Working

Oct 22, 2014

Prompt for the project is "Write a program that will ask the user for a number of seconds and output the equivalent period of time in days, hours, minutes, and seconds.The program should:

-Use modulo division to calculate the number of days, hours, and minutes.
-Use compound operators when making assignments.
-Proper formatting and use of comments
-Symbolic constants defined as the number of seconds in a minute, hour, and day.

For example: final int sec_in_min = 60;"

public class Mod1
{
public static void main (String[] args)
{
int sec, min, hr, day;
final int SEC_IN_MIN = 60;
final int SEC_IN_HR = 60 * 60;
final int SEC_IN_DAY = 60 * 60 * 24;
 
[code]....

View Replies View Related

Undo Option In Jtable?

Apr 24, 2014

I am trying to create a JTable and I want to implement an undo option in it. Is it possible that I store the table model at some part of the operation and later when i press an undo button or something, I can set the saved table model so that it will perform like an undo.

View Replies View Related

How To Add Freeze Option To Game

Mar 2, 2015

I want to add freeze option to my game I dont know how to do it without crushing him.

I need this option so people will wait until all players have accepted the next match.

View Replies View Related

Error When Trying To Hide JComboBox Option?

Jul 25, 2014

Cannot switch on a value of type Object. Only convertible int values, strings or enum variables are permitted

I'm trying to hide and option using switch statement but this is the error i receive.

public void actionPerformed(ActionEvent e)
{
if(e.getSource() == comboDest1)
{
switch(comboDest1.getSelectedItem())

[Code] .....

View Replies View Related

How To Hide JComboBox Array Option

Jul 24, 2014

I'm trying to hide a JComboBox option depending if the a user has picked a certain option from a previous JComboBox.

.setVisible(false). doesn't work

String[] Dest = new String[] {"Select Destination","Crete", "Paris", "Croatia"};
String[] Accomodation = new String[] {"Select your Accomodation","Hotel", "Villa", "Bed & Breakfast","Youth Hostel"};
String[] Night = new String[] {" Select number of Nights", "7","10","14"};
final JComboBox<String> comboDest1 = new JComboBox<String>(Dest);

[Code] ....

I know setVisible isn't the way it's done but i don't know how to do it

View Replies View Related

User Option - Enter Either Int Or Double

Apr 21, 2014

I'm trying to write a program where the user has the option to enter either an int or double but whatever input I enter just gets cast to a double. Do I even have the right Idea by using if else statements?

import java.util.*;
public class VS
{
public static void main(String[] args) {
Scanner Input = new Scanner(System.in);
System.out.println("Please enter a number");
if (Input.hasNextDouble()) {

[Code] ....

View Replies View Related

JSP :: Ignoring Checkbox Option When Iterating In Loop

Apr 18, 2015

my code is ignoring the checkbox option when Iterating in loop like this:

<tbody>
<c:forEach items="${users}" var="user">
<tr>
<td><input type="checkbox" name="deleteFromList" value="${user.id}"/><input type="submit" value="Delete" name="action" ></td>
</tr>
</c:forEach>
</tbody>

The output of value="${user.id}" is retrieved from a DB, it looks like this:

Id Nombre usuario Email Fecha de registro Acción
1 isaac2 @2 1986-01-01 *Delete(input) *Here there is check box
2 isaac3 @3 1988-01-01 *Delete(input) *Here there is check box

Then depending of which check box I selected then the row by the side should be selected by id and deleted.But what happens is that doesnt matter which check box I select, always the first row is deleted. I understand that at the first iteration of the loop it just take the first id, it doest attach the id I have choosen to the row it belongs to

View Replies View Related

Create 3 JLabel For Option / Square And Direction

Apr 30, 2015

I have to create 3 JLabel for Option, Square and Direction. Well, I did but its not in the right place. It should be in the right Panel but i did change the code so its in panelRight1 but its still not changing? Its somehow not working and no matter how i try to change the position of it, it doesnt change at all.

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class CBallMaze extends JFrame implements ActionListener
{
/**
*
*/
private JMenu[] menu = {

[Code] .....

View Replies View Related

Stack Assignment - Give More Than One Option To Input

Sep 10, 2014

I understand the stack part of it, just not the loop, specifically how you give the user more than one option to input.

Implement a printer driver that handles incoming print jobs. The driver will behave in the following manner:

- Loop giving the user the following options: ADD print job, DELETE latest print job, and
QUIT
- Recording the following information from each job: computer name, document name, and
number of pages
- When the user chooses to ADD, add a new print job to the top of the stack
- When the user chooses to DELETE, pop off the latest print job and output to the screen
which job has just been deleted
- When the user chooses to QUIT, output the print jobs still in the stack (in order from top
to bottom)
- Output must include all relevant information for each job.

View Replies View Related

Swing/AWT/SWT :: Option Buttons Goes Into SelectionValues Argument

Dec 12, 2014

public static void main(String[] args) {
String[] images = new String[5];
images[0] = "B.png";
images[1] = "M.png";
images[2] = "H.png";
images[3] = "D.png";
images[4] = "S.png";

[code]....

There is my code so far, on the line JOptionPane.showInputDialog(null, "Give us a word starting with "+text[i]+":", "tut", 2, image, ?, null);, eclipse gave me 2 extra arguments following the icon and I'm not sure what exactly goes into the 2nd to last, the "selectionValues" argument.

After checking the Java docs, it was apparent that the option buttons goes into the selectionValues argument, but is there a way to work past that if I would only like the default (OK, Cancel) buttons on my window? The school haven't taught us the method to create custom buttons and I doubt I would've been set something that was not taught.

View Replies View Related

JavaFX 2.0 :: ChangeBox In SceneBuilder 2.0 Has No OnAction Option?

Jul 5, 2014

SceneBuilder 2.0 on my computer shows no onAction for ChangeBox. How to get around this? Several of the Java coding options listed online do not work with JavaFx 2 and SceneBuilder.

View Replies View Related

Choose Option To Get Contact Details - Not Getting Output Expected

Feb 20, 2015

When I run my program and choose option 2 to get contact details I am expecting it to display as follows (First Name, Last Name): Contacts how have been entered:

0) John Doe
1) George Smith
2) Nancy Davis

Please enter the number corresponding to the contact you would like to view:

Instead for a personal contact it is displaying as follows:Contacts who have been entered:

0) Doe 1 F St. (last name, address)

Please enter the number corresponding to the contact you would like to view:

Instead for a business contact it is displaying as follows:Contacts who have been entered:

0) 1 F St. jd@gmail.com (address, email)

Please enter the number corresponding to the contact you would like to view:

Then when I enter the number to display the contact for personal it is returning me only first name and business is only returning me first and last name. It should be returning the full contact info that was put in during the add contact step. I thought I programmed everything properly but it isn't displaying what I want to seeMy code is listed below.

ContactList

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package contactlist;
import java.util.ArrayList;
import java.util.Scanner;

[code]....

View Replies View Related

JavaFX 2.0 :: DateTimePicker - Option To Choose Date And Time?

Jun 6, 2014

JavaFX 8 has a DatePicker which is very nice. Does it have an option to chose a date and a time?

View Replies View Related

Finding Source Files In Other Directory With Class Path Option

Apr 23, 2015

I'm having another issue. I have 2 java source files(see below). They are place in the same directory. How do I compile them using classpath?

I have already tried 1st attempt :

javac -cp com.companyname.interview.DuplicateReplace.java DuplicateReplaceTest.java [did not work!]
2nd attempt: javac -cp DuplicateReplace.java DuplicateReplaceTest.java [again, did not work!]
package com.companyname.interview;
public class DuplicateReplace { /* code */}

[Code] ....

View Replies View Related

Servlets :: Implement (Keep Me Signed In) Option In Login Page Of Application

Jun 2, 2014

I want to implement a 'Keep me signed in' option in the login page of an application. I have noticed this option is present in the form of a checkbox on the login page of many websites but i don't know how it can be coded . When selected, a user is no longer asked for his username and password on subsequent sessions but he is automatically given access.

View Replies View Related

Ask User For Number Of Rows / Give Option To Repeat The Program

Aug 11, 2014

This is what I have so far, but how do I ask the user for the number or rows and give the user the option to repeat the program?

public class Pyramid {
public static void main(String[] args) {
int myLevel;
int i, j , k;
myLevel = 6;
for (i = 1; i <= myLevel; i++) {

[Code] ....

View Replies View Related

How To Create New Customer Object Each Time User Chooses 1 As Option

Feb 17, 2015

import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;

public class App {
public static void main(String[] args) throws IOException {
Scanner keyboard = new Scanner(System.in);
System.out.println("Please Select an option > ");

[Code] .....

View Replies View Related

Project Is Working On JFrame - But Not Working On JApplet

Apr 10, 2014

I am developing an application to share my client screen with server, it is working well on swing. But i want to develop as web application, i am trying to using applet. But i am facing the fallowing problem..,

1) The Applet screen also open and project also running well on server mechine. But unable to see the client screen on the server.

2) The problem may be to display the JDesktopPane or JInternalFrame.

My working Server Code extends withe JFrame..Java Code:

package remoteserver;
import java.awt.BorderLayout;
import java.awt.Container;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import javax.swing.JApplet;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JOptionPane;

[code]....

View Replies View Related

Swing/AWT/SWT :: Can't Select The Very Last Row In A Jtable

Mar 26, 2015

I have encountered a very tricky spot in a project that i am working on. I must have a JTable to programmatically select the very last row in an AbstractTableModel. I have tried every thing but nothing works so far.

The problem is is that the JTable only scrolls down to the second last table row in the model? What am i missing?

//Show the very last row in a tablemodel object using the method updateTableRows
//after an "insert action event" occurred
public void updateViewMode(String name,
java.util.List<NetworkSwitch> list,
boolean flag) {
CableTableModel model = cableTable.getCableModel();

[code]....

What happens is that the only row that gets selected is the second last row of the total rows iny AbstractTableModel object, "CableTableModel"

What am i missing?

View Replies View Related

JSP :: Manipulate Select Tag String?

Sep 24, 2014

I build a select tag string and use JSTL to display this string on the JSP page.

Is there an easy way to manipulate this string to remove one of the option pairs?

View Replies View Related







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