32,199 Topics

Member Avatar for
Member Avatar for Covinus

i was trying out some java gui's and when I tried the Panel nothing seems to come out. The frame does! but no panel. i was wondering it could be the JDK was old my version out home is jdk1.0.5 something like that. or my code was old school. The …

Member Avatar for hooknc
0
99
Member Avatar for colinhc

Just wondering if it is possible to register an Access database as a date source using code in a java program rather than going to Windows to register the data source with the database manager. How would this be done? If anyone could point me in the right direction I …

Member Avatar for hooknc
0
400
Member Avatar for korbynlehr

I have some code that I need help with. The code compiles but I get a runtime error. Here is the error and the code: ERROR: Exception in thread "main" java.lang.Error: Do not use MessageLog.setLayout() us e MessageLog.getContentPane().setLayout() instead at javax.swing.JFrame.createRootPaneException(JFrame.java:465) at javax.swing.JFrame.setLayout(JFrame.java:531) at MessageLog.<init>(MessageLog.java:23) at MessageLog.main(MessageLog.java:90) Press any key …

Member Avatar for hooknc
0
161
Member Avatar for freesoft_2000

Hi everyone, I have a rather confusing question but please bear with me for a while. You see i am trying to upload a file to a certain website called [url]http://www.doubleZ.com[/url]. I am using java's HttpUrlConnection class. Connecting to the website is okay and i am also getting its outputstream …

Member Avatar for jwenting
0
113
Member Avatar for korbynlehr

I am looking for someone that can help me online for an hour or so maybe a few times for the next few weeks that can help me understand what I am supposed to do for my class programs. I am not looking for someone to do them for me …

Member Avatar for hooknc
0
399
Member Avatar for indienick

I'm trying to list some data gathered from files into a JTable - here's the code I'm using: [code] /* Packages listed in a JTable */ Object[] columnNames = {"Package", "Version", "Installed"}; int packageCount = getPackageCount(); Object[][] data = new Object[packageCount][2]; Scanner dbIndex = new Scanner(new File("/opt/npkg/dbindex.npkg")); int row = …

Member Avatar for indienick
0
153
Member Avatar for abc2004

How to populate data from a database table into JList? I can retrieve the data from the database table ok. No Problem but now want to populate those data into the JList. What are the code for this? I need to know the class and methods for this. Thanks!!!!

Member Avatar for Phaelax
0
662
Member Avatar for ktum

[LEFT]Hi, I am not new to ASP and c# but fairly new to Javascript. I have a Datagrid with a button column and a text column. The button is linked to a Javascript which when pressed prompts the user to enter a number. Upon entering a number and clicking 'OK', …

Member Avatar for hollystyles
0
279
Member Avatar for ryy705

Hello, I am novice programmer and I am experimenting with swing. I created a scrollabe text area that seems to scroll great when I hold down a key for a long time. But, when I select a different tabbed pane and then come back to the pane containing the text …

Member Avatar for hooknc
0
116
Member Avatar for Covinus

what kind of java do they use in those yahoo games. im a senior computer science student and its time for my classmate to make a special project. we a re planning to make a game of checker with the same interface as the yahoo games. I would like to …

Member Avatar for Covinus
0
223
Member Avatar for dev_tej_kohli
Member Avatar for Dark_Omen
0
54
Member Avatar for indienick

I have a question about creating my own custom classes. I want my own class - NButton. The idea of this class was to quickly make JButtons, by adding my own custom argument sets. Here's my prototype for this: [code] import javax.swing.JButton; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; /** * NButton - …

Member Avatar for indienick
0
114
Member Avatar for Visslan
Member Avatar for korbynlehr

I am having trouble getting my timer class working with my scoreboard frame and application. Any constructive help is appreciated. [code] public class ScoreboardTimer extends Thread { private int counter; // the number of seconds remaining on the timer private boolean isRunning; // toggle variable that controls whether the counter …

Member Avatar for peter_budo
0
168
Member Avatar for indienick

This post is asking ALOT, but I'm not expecting one person to leave me a hefty response, so any bits of widsom and knowledge are MUCHLY appreciated. Could someone(s) please explain to me (in detail) how to use: - Data Models (for JTree's and JTable's) - Pattern matching (java.regex.Pattern) and …

Member Avatar for indienick
0
74
Member Avatar for Embeza

Hi there , I need a calculator that is flexible enough to perform +,-,/,%,^and *. can you help plz:?:

Member Avatar for MattEvans
0
240
Member Avatar for sam1

hi, I did what it said in the following web site([url]http://www.onjava.com/pub/a/onjava/2005/05/11/sqlexplorer.html[/url] ) but cant get the sqlexplorer to show up in the other menue. has anyone else tried this in LINUX(suse), or if anyone has tried different way let me know please. thank you

0
62
Member Avatar for j1979c

[B]Just want to confirm if it is possible to set in this case (Example 1) class Two's pumpId variable by sending it as a parameter to class One's setPumpId method without using the usual return method assignment like : [code]pumpId = o.getPumpNum()[/code] I think in C++ we can do that, …

Member Avatar for jwenting
0
234
Member Avatar for indienick

Ok, I know this is a stupid-easy question, but how do I "gather" (best word I could think of) an image? [code] JFrame frame = new JFrame(); Image programIcon = (...?...); frame.setIconImage(programIcon); [/code] My main issue is that since Image is abstract, I can't exactly go " = new Image("yadda.png");" …

Member Avatar for indienick
0
164
Member Avatar for Badhrinath

Hi I want to repaint a page in applet. When that page is repainted, i want part of that page not to be repainted. That should be static. Is there any way to separate the applet window as so many parts and to repaint the necessary parts only? Pls provide …

Member Avatar for Rotak
0
125
Member Avatar for Cudmore

So. I'm having an issue. I'm building an application that loads class files as extensions during runtime. I'm doing this, becuase I want my application to be able to grow in the future without having to recode and recompile the main source.. So, I plan to make seperate class files …

Member Avatar for Rotak
0
247
Member Avatar for Iamnew2java

I am trying to calculate the miles per gallon per trip & also average miles per gallon overall. The per trip works fine but I can't get the average to work. It is just reading the per trip instead of averaging. Any suggestions? THANKS! import java.awt.*; import java.applet.*; import java.awt.event.*; …

Member Avatar for Iamnew2java
0
109
Member Avatar for nammi_aqua

Write a program that reads an unspecified number of integers. Keep track of how many positive and how many negative numbers are entered. The input terminates when the user enters 0. Display the count and the average of the positive numbers and the count and the average of the negative …

Member Avatar for jwenting
0
109
Member Avatar for hemanthjava

I have a table which is placed in a Panel. This panel contains a Horizonal Scroll Bar which when scrolled to the right enables us to see the whole JTable. Now the Table itself has a vertical scrollbar. The probelm is when the user can't see the whole table he …

Member Avatar for jwenting
0
230
Member Avatar for nammi_aqua

I am not able to code this is java. I have to use nested loops. The pattern I need to get is 1 2 3 4 5 6 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1

Member Avatar for jwenting
0
77
Member Avatar for jansenkzh
0
74
Member Avatar for LBasa

Hey Guys, I've never used JLabel and JText Area before and this specific project requires it. I'm trying to create something that allows entry of student name, id and 2 grades. Then get the average of the 2 tests and show the letter grade equivalent. I'm getting error messages that …

Member Avatar for ranjanbaisak
0
601
Member Avatar for Embeza

Hi guys I want to write a VB 6.0 program that takes a text file as input and add contents of the file into the database. The file contains information organized like the following : 1 humberger $2.5 2 Dorwot $3.1 3 pasta $4.2 The table in my database called …

Member Avatar for Comatose
0
69
Member Avatar for Iamnew2java

The program runs but it doesn't calculate the average MPG correctly. It is calculating something, instead of zeroing out like earlier, but it sure isn't MPG! :mad: Any suggestions???

0
82
Member Avatar for parvin1987

I how another question I ran a program with one client and one server. it works correctly .but when I have a multiClient program ,the serverThread can not read the sentence from client .why it can't do this?is that because of extending thread I know that client class sends the …

Member Avatar for parvin1987
0
150

The End.