Posts

Showing posts with the label GUI

[SOLVED] Java GUI project with toolbar and panels | Editing project with full source code

For this lab, you will do some work on a GUI program. Most of the work is related to actions, buttons, menus, and toolbars.When you turn in your work for this lab, you should also turn in an executable jar file of your program, in addition to all the files from your Eclipse project. See the last section on this page for information about how to create executable jar files. To begin the lab, create a new project in Eclipse and copy-and-paste both directories – guidemo and resources -- from the code directory into your Eclipse project. The guidemo directory is a package that contains the Java code of the program. The resources directory has several sub-directories that contain image and sound resources used by the program. You will be working only on the code in the guidemo package. The code directory also contains an executable jar file of the completed program, GuiDemoComplete.jar. You can run this jar file to see how the program should look when it's done. In the incomplete so...

[SOLVED Intelligent Random Number Generator - 7 Unique numbers in Java with full source code

A walk through of how it would work is a follows. Generate seven unique numbers from 1 - 49 that meet the criteria selected by the user. Odd/Even Combination (first criteria and only one can be selected) for example 4 of them should be odd numbers and 3 of them even numbers (or the other options) Second Criteria is the High/Low combination - High(numbers from 26-49 and Low(numbers 1-25) is this option more than can be selected such as a) 3 of them must be High from 26 - 49 and 4 of them must be Low from 1-25, b) You can also have 4 of them be High from 26-49 and 3 of them Low from 1-25 NB High/Low are check boxes allowing for one or all of the characteristics to be selected. Total Sum presents a situation where the sum of the seven numbers must fall in line with one of the options, a) for example when you sum the 7 numbers it must from 150-200 (or the other options) The other scenario is for exclusions, the numbers are from 1-49 but there is an option where you can exclude som...

[SOLVED] Employee Database Application | Java Graphical User Interface Assignment Help

Extend the code for your previous assignment’s employee database application. Submit your code via Blackboard, as a single .java file. Only one upload is permitted per student, so please ensure your code is correct and complete and in the proper format before uploading! The file name should be your last name, first name, and EDA2 run together: EX: LundquistDougEDA2.java. The required functionality & components are: Any deficiencies from the first assignment must be corrected, such as: Any missing or miscoded database methods (add, delete, modify, read) Non-conformance with input format requirements Create a GUI interface for inputs and outputs, which should include these elements A JFrame to hold the other elements, replacing console I/O A JTextField for command inputs A JTextArea for output, when necessary JButtons for saving and loading data files Component details: The JTextField will accept text input in the same single-line format as assignment 1. After a co...

[SOLVED] User Interface related questions command line, GUI and metaphor

When input information can effectively be provided by selecting from a list or pointing at an object or position, direct manipulation interfaces are usually considered "easier to use" than interfaces based on textual commands. But direct manipulation interfaces are not always best. What kinds of situations are better served by type-in command-based interfaces? Use examples to illustrate your answer. Discuss the role of metaphor in relation to the design of user interface components. In particular, identify the advantages and disadvantages of using metaphors when designing interface widgets, giving examples to illustrate your answer. Get your solution now Buy now

Banking System in Java GUI - CS480 Final GUI Project

(Bank Account Services) You will use JavaFX to implement a GUI application to provide the bank services to users. You will provide a combo box to allow users to select a services from this following list. Open Account Open CD Account Deposit Withdraw Check Balance Close Account [Open Account] User will provide the initial deposit amount, the system will assign an Account number, create an Account and display the Annual Interest Rate. [Open CD Account] User will provide the initial deposit amount and the CD duration. The system will assign an Account number, create a CD Account, and display the CD Annual Interest Rate and the Mature Balance. [Deposit] Users will provide the account number and the deposit amount. The System will check if the Account exists and if it is an Account object, then make the deposit. [Withdraw] Users will provide the account number and the withdraw amount. The System will check if the Account exists and if it is an Account object, then m...

Washing Machine Controller GUI in Java programming - Flinders University

Washing Machine TaskWrite a Java program that simulates a washing machine. The graphical user interface consists of two parts: the control panel for setting up washing conditions and the drawing panel for simulating the turbo movement when the machine starts. Note: the example GUI is to illustrate the key interface components rather than suggesting this is the only interface that everyone should stick to. You are encouraged to come up with your own design. Level 1: Appearance and layout Think about appropriate fonts and colours for the labels and the display. Also spend some time on background colours, borders, and the shape of buttons. Work out a layout that resembles a washing machine control panel. Washing machines usually have different interfaces, but they share some common components. You are also encouraged to design a novel interface that you could possibly justify. You may use any number of panels and any layout managers. Level 2: Event handling The toggle “ON/OFF” ...

JavaFX Homework with JPanes, JButtons and JComponents in Java GUI

Create the program with the following functionalities: Must contain at least one button that changes something on the GUI  Must contain at least 2 panes  Must contain at least 6 components (Nodes)  Must be PG-13 Actually I'm not working on games. Currently. Get your work now! Buy now

Lock Up Tite user authentication program in Java GUI

Objective You work for a company called Lock Up Tite. They want you to write a front end program to grant authentication access to programs using a user name and password. Requirements Write a program that creates a loop and has three options for the user to select. Option 1 allows the user to add a user name and password, which is then stored into a file.  Option 2 allows the user to enter a user name and password up to three times. For a given attempt, the user will be notified if the attempt is successful or unsuccessful. Option 3 will exit the loop and end the program Main Menu Requirements: When the program starts, present the user with a menu offering the three options described above. After the user chooses either option 1 or 2, the program should go back to the main menu. The final option will end the program.  Option 1 Requirements: This option prompts the user for their user name and password and stores them in a file named passwords.txt. The program should not ...