32,199 Topics

Member Avatar for
Member Avatar for adistance

How to implement the mouseRelesed(MouseEvent me) and mouseClicked(MouseEvent me) methods when the mouse button is clicked and the mouseReleased method do nothing. [code]import java.applet.Applet; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; public class Example extends Applet implements MouseListener { public void init() { addMouseListener(this); } public void mousePressed(MouseEvent me) { } public void …

Member Avatar for peter_budo
0
94
Member Avatar for pritam_1181988

Q.28. Write a program to produce the following form. 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 $ $ $ $ $ $ $ $ $ $ $ …

Member Avatar for peter_budo
0
121
Member Avatar for P00dle

Hi everyone. I need help. I'm supposed to have my program edit an XML field. The user has the option to change the values in certain nodes. After the node values have been filled in, and a certain button has been clicked, the program should write the changes to the …

Member Avatar for P00dle
0
102
Member Avatar for kkk_f17

while i'm running the below code, I'm getting : "There are several Java methods that match equally well". Can any one solve this problem. Please i need u r help. Thanks in Advance My XML:-- [code] <?xml version="1.0" encoding="UTF-8"?> <article1> <title>kiran Java May Be a Fad</title> <author>J. Burke</author> <startdate>25/12/2009</startdate> <enddate>30/10/2010</enddate> …

0
65
Member Avatar for myqro

I am new to java programming and i have been struggling to connect my Jtextfields to my java database. I have been working with Delphi previously and was wondering how i can connect the GUI fields in my form to an already existing database using jdbc. Any help appreciated. Thanks

Member Avatar for myqro
0
135
Member Avatar for melancholic
Member Avatar for BestJewSinceJC
0
42
Member Avatar for Stefano Mtangoo

I have asked the same Question on C++. So far I have moderately mastered PHP a little and more of Python. I want now to add up Java/C++ So what I need to know to be Java expert in Web and Desktop Applications? Are they two different beasts? Thanks Guys

Member Avatar for kingsboro2008
2
192
Member Avatar for red999

Does anyone know of a good beginner java book that is the most up to date? Head First Java 2nd ed. seems kind of outdated when I looked at the date.

Member Avatar for red999
0
78
Member Avatar for denni2727

I'm developing an application which uses a Timer so that the JButtons that the application has, blink each half a second, And the problem is that it works properly until I make some JButtons fire events. When this happens the timer speeds up, but its delay is the same. I …

0
89
Member Avatar for Ashwin Vasnai

Plz help. I am working to create application kind of auto-suggestion. I am using JTextPane along with Jlist on PopupMenu. I am not able to get the Action Event on JList. and other problem is that my KeyPress Event of JTextPane are getting overlapped with JList hence nothing is selected …

Member Avatar for Ashwin Vasnai
0
165
Member Avatar for melancholic
Member Avatar for wondergal04

cn u plz tel me the java code.. to display image as soon as it is selected...?? please... :pretty:

Member Avatar for wondergal04
-2
118
Member Avatar for shack99

Hi, Could someone please help me, I'm a bit stuck and don't know where to start. I want to create a program where I have to use multiple arrays eg: processing the data of a file, the file contains details of several groups of students(group 1,2 3,...) and each group …

Member Avatar for shack99
0
205
Member Avatar for Stefano Mtangoo

Please help me to expound how to do layout management. You may choose any layout manager and expound it. I'm doing self teaching most of the time and it is not fun! Please help me ho to arrange. Also which layout is mostly used

Member Avatar for peter_budo
0
274
Member Avatar for EdwardS

Hey everyone, A root-to-leaf path in a tree is defined to be a sequence of nodes starting from the root node and proceeding downwards to a leaf.Required that given a tree, output the tree after reversing all root-to-leaf paths. For the following tree: root = 5 root.right = 8, root.left …

0
34
Member Avatar for dave_nithis

Hi all, I got a new Java puzzle in which I have to find the largest of given numbers without using If loop,for loop or while loop..And you should not use any max() or min() functions. Can anyone help me out in this?I want to know whether it is possible …

Member Avatar for Rizwana begum
0
228
Member Avatar for verruckt24

Hi, Can anybody point me out to good resources on "automating form filing and submission through Java App". The various types of forms are as given below: 1. Standard form with Form_Name, text boxes and submit button 2. Standard form with Form_Name, text boxes and submit image or JS based …

0
68
Member Avatar for Teethous

Hello. I am writing an ATM program for a project, but I am having problems matching the users entered pin with what is stored on the text file. Here is how i read the file [CODE]import java.io.File; import java.util.Scanner; import machine.*; import javax.swing.JOptionPane; public class FileRead { Transactions query = …

Member Avatar for Teethous
0
152
Member Avatar for SoulMazer

So...I have just begun to whet my appetite for Java today, and I have already run into a stumbling block. When I put my code in a .java file and compile it (via javac), I receive no errors. However, when I actually run my script, I receive quite the nasty …

Member Avatar for peter_budo
0
203
Member Avatar for startstop123

As you know there exists Mobile Banking for all Banking Domains. Everyone can do their banking from their Mobile devices. So I like to create a Desktop Application for banking on Windows. Users can do their banking like making and viewing transactions, credit card information, Saving accounts, current accounts, demat …

Member Avatar for startstop123
0
264
Member Avatar for davewhite

merry Christmas! [CODE]import java.io.*; public class NickelDollar { public static void main(String[] args){ BufferedReader BR = new BufferedReader(new InputStreamReader(System.in)); String num = ""; System.out.println("How much Nickel do you have?" ); System.out.println("How much Pennies do you have?" ); try { num = BR.readLinne(); int nickel = Interger.parseInt(num); num = BR.readLinne(); int …

Member Avatar for nomemory
0
100
Member Avatar for JAbeer

[code]import javax.swing.*; import java.awt.*; import java.awt.event.*; public class cal extends JFrame implements ActionListener { JMenuBar mb; JMenu file, help; JMenuItem esc, about; JButton btn[]; JLabel lab1 = new JLabel("0"); JPanel pan1; int i; final int MAX_INPUT_LENGTH = 20; final int INPUT_MODE = 0; final int RESULT_MODE = 1; final int …

Member Avatar for gunjannigam
0
75
Member Avatar for 4me@u

Hi can some body help me out with this, i was trying to display a directory list from a folder toa jlist using the following code [code]String st; while( (st.length)!=-1) { fileName=in.readUTF(); String data[] = {fileName}; jList1=new JList(data); }[/code] but it only displays one file, how could i correct this …

0
45
Member Avatar for SmashM

Hi, I just finished learning basic OO concepts and java programming. I know some HTML and have made very basic webpages. I'd like to tackle something like Ruby then ruby on rails. I've also taken a class in databases and mySQL. Do you think it's ok for my level to …

Member Avatar for stephen84s
0
110
Member Avatar for Corrderio

So I've recently been learning java and have been using [url]www.javacoffeebreak.com[/url] for my first tutorial, anyway everything's been going smoothly til I get to here: [url]http://javacoffeebreak.com/java102/java102.html[/url] The code that's giving me that error is the following: [code] public class Account { protected double balance; // Constructor to initialize balance public …

Member Avatar for Corrderio
0
150
Member Avatar for Korhan

hello guys, I have to implement a classic snake game with java in 3 days but I couldn't figure out how to code yet. If you have a source code or a useful tutorial for the snake game please let me know. My program will be a little different from …

-1
39
Member Avatar for javaman2

hi everyone, i need help with a project that i am doing. i need to use inheritance and arrays to make a poker game, making a card class and a poker class that extends the card class in the card class i would need to use arrays to make a …

Member Avatar for JugglerDrummer
0
1K
Member Avatar for kaka@sam

Hey, I am new to this forum. I wanted some help . I was planning to do a project in remote OS detection . what would be the best way forward. the language to be used( i was thinking of java). basically how to start :)... thanks..

0
147
Member Avatar for didi00

Hi everyone. So I get the code going now the question is: How to make a menu in Java code? For example: 1.create table 2.insert into table 3.select fro table 4.delete table... Which will you choose: ex.1 and creates table I mean like switch case in C++ [code] import java.sql.*; …

Member Avatar for didi00
0
186
Member Avatar for mellowmike

So I have a client/server application and I'm trying to send an ArrayList of objects to the server. I kept getting errors sending the ArrayList of objects, so I just decided to send an empty ArrayList to see if anything was wrong, and it turns out, that the server can't …

Member Avatar for mellowmike
0
458

The End.