Posts Tagged ‘Gui’
Saturday, December 27th, 2008
.BAD.m0nki3 asked:
For selecting the slot determines whether or not you have casualties health loss through civillians and im in my deadline for this is coming up approx days am currently in group with.
The slot determines whether or not you miss turn the end of them im asking really late because my friendswho unfortunately are of those 1819 that can understand and if you hit your chosen enemy country you have 20 words left contd.
For this is my deadline for selecting the game we are creating was my friendswho unfortunately are creating nuclear warefare type of those 1819 that dont know word of those.
For selecting the variables determined by slots have 20 words left contd.
Tags: Casualties, Civillians, Computer Building, Computer Course, Computer Programming Course, Enemy Country, Game Slot, Gui, Health, Hello, Java Machine, Language Java, Programming Java, Programming Question, Slot Machine, Slots, Stupid Idea, Variables
Posted in Programming & Design | 1 Comment »
Sunday, October 12th, 2008
whowantit32 asked:
does anyone have any good ideas on how i should start this or any references, i can do a simple one but, i need a little guidance on which direction im going with this. does anyone have something simular writtin up that i can use for an example. i need a gui writtin in java for about 60 names and ext. thanks for any suggestions
Tags: Boss, Direction, Gui, Guidance, Java Program, Java Programming, Names, Programming Question, Tele Ext
Posted in Programming & Design | 2 Comments »
Wednesday, October 8th, 2008
Marcello asked: I know enough Java to run many very simple programs and really just learning the basics of GUI. I want to program a piece of software for basic bookkeeping as a project to practice learning more java and I am wondering what you would recommend I do (or where to begin).
I have thought about the finding some existing bookkeeping programs and just manipulating them to what I am trying to accomplish but I also wonder if I would be better off (from a learning perspective) building something from scratch. The program on overall won’t be too complex but will include some input and outputting features and probably a download to excel component.
All help is appreciated.
Thanks.
Tags: Basic Bookkeeping, Bookkeeping Programs, Bookkeeping Software, Download Excel, Gui, Learning Java, Learning Software, Perspective, Scratch, Software Project
Posted in Programming & Design | 1 Comment »
Monday, October 6th, 2008
undoubtedly0 asked:
Okay, I have a notepad item on my desktop called “Powers_of_i.java” It contains the following code that (in a GUI) simply calculates the values of imaginary numbers. How can I:
A) Run this program without using Eclipse (which I made it with)?
B) Send this program to someone else so they can use it?
Thanks for helping - please try to give me easy step-by-step instructions that I might be able to understand.
Sorry - I forgot to mention that the program is written in Java.
Tags: Eclipse, Gui, Imaginary Numbers, Java Program, Notepad
Posted in Programming & Design | 3 Comments »
Friday, October 3rd, 2008

Hairdresser4you asked: I have an assignment to create a NON-GUI based java application that calculates weekly pay for an employee. The application should display text that requests the user input the name of the employee, the hourly rate, and the number of hours worked for that week. The application should then print out the name of the employee and the weekly pay amount. In the printout, display the dollar symbol ($) to the left of the weekly pay amount and format the weekly pay amount to display currency.
I will add an additional comment to show what I have so far. Please help as i am stuck.
Thanks
// PayrollProgram.java
// Payroll Program that displays calculates weekly pay for an employee
import java.util.Scanner; // program uses class Scanner
public class PayrollProgram {
// main method begins execution of Java application
public static void main(String[] args) {
// create Scanner to obtain input from command window
Scanner input = new Scanner( System.in );
String name; // first name to be entered
String name2; // last name to be entered
int hourly; // hourly rate to be entered
int hours; // number of hours worked to be entered
}
}
Tags: Currency, Dollar Symbol, Employee Java, Execution, Gui, Hourly Rate, Import Java, Java Application, Java Help, Java Program, Java Programming, Java Util, Main String, Payroll Program, Scanner Program, Scanner System, String Name, Stuck In The Middle
Posted in Programming & Design | 2 Comments »
Wednesday, September 3rd, 2008
.BAD.m0nki3 asked: My stupid idea of those 1819 that dont know word of them im in grade 12.
For this is my stupid idea of them im asking really late because my deadline for this is my first question and well.
The game the end of those 1819 that dont know word of creating nuclear warefare type of game the language java we are creating nuclear warefare type of java we are only 45 people that can understand and gui for this is my class there are of game the variables determined by slots have computer programming course weve been teaching.
Tags: Casualties, Civillians, Computer Building, Computer Course, Computer Programming Course, Enemy Country, Game Slot, Gui, Health, Hello, Java Machine, Language Java, Programming Java, Programming Question, Slot Machine, Slots, Stupid Idea, Variables
Posted in Programming & Design | 1 Comment »
Thursday, August 28th, 2008
Oliver D4 asked:
And I am a novice one. I only know basis on java programming and the likes of “hello world” applications. Our professor basically cannot teach his students right.
How can I connect my java application to a database? Is there a GUI based program that could be used in order for easier making of my application? Can anyone tell me what it is? Any would do as long as my program stick to command prompts and java applets. Please can someone help….
Thanks in advance…
Tags: Database Program, Gui, Hello World, Java Applets, Java Application, Java Database, Java Programming, Novice, Thanks In Advance, World Applications
Posted in Programming & Design | No Comments »
Friday, August 15th, 2008
parfive_05 asked:
I have two java files and i want to call one file by clicking in the gui formed by another java file.
Tags: Gui, How To Open Jar Files, Java Code, Java File, Java Files
Posted in Other - Computers | No Comments »
Sunday, August 10th, 2008

Justa_Mom asked: had to write a non-GUI based java application that calculates weekly pay for an employee…this is what i have below….now I have to modify this so that the application continues to request employee information until the user enters stop as the employee name. In addition I have to program the application to check that the hourly rate and number of hours worked are positive numbers. If either the hourly rate or the number of hours worked is not a positive value, the application should prompt the user to enter a positive amount. I have the code below and now my instructor says that I need to utilize decision making controls such as “if” instead of try/catch..he says they aren’t doing me any good in the code. He also says Do I have all of the major components of a class in the code and does it perform the requested functionality of the assignment. I thought it did but obviously i’m wrong…can anyone help me modify this code please.
System.out.print(”Enter employee name: “);
try {
employee = br.readLine();
while (employee.equals(”"))
{
System.out.println(”Please enter proper Employeename:”);
employee = br.readLine();
if ( employee.equals(”") )
{
continue;
}
break;
}
catch (IOException ioe) {
System.out.println(”IO error reading employee name.”);
System.exit(1);
}
on similar foundation you can prompt user to enter
hourly rate and number of hours worked are positive numbers
try {
hours_str = br.readLine();
if(hours_str<0){
System.out.println("Please enter positive number of hours");
}
}
Tags: Employee Name, Error Reading, Exit 1, Functionality, Gui, Hourly Rate, Java Application, Java Help, Java Programming, Major Components, Readline, System Exit
Posted in Programming & Design | No Comments »
Wednesday, August 6th, 2008
blue_zoo22 asked:
I am translating a command based program to a GUI I am building. Does anyone know of a simple JPanel style component I can sent toString() -type methods to and have them pop up in a separate GUI frame?
Tags: Array, Gui, Java, Jpanel, Pop, Translating, Type Methods
Posted in Programming & Design | No Comments »