32,199 Topics

Member Avatar for
Member Avatar for sealxlion

Hi, can someone help me? I have two Jframes: Frame and MainFrame. My problem is they both show at the same time. If the login is correct MainFrame opens and Frame closes. [CODE]import javax.swing.*; public class Main extends JFrame{ public static void main(String args[]) { //Frame Window /Login Window Frame …

Member Avatar for mKorbel
0
167
Member Avatar for lena1990

hi i am working in project that i have multiple frame so i used with my project static variables but i cannot use these array with my table in another frame too many exception is appered and my frame that cotain the table doesnot apper how can i solve this …

Member Avatar for mKorbel
0
93
Member Avatar for aldeene

shifting from vb.net to java gives me a hard time!.. I have a little background on java.. but not on Java + Database.. anyone can give me samples or tutorials? I started googling some but hell I can't understand it

Member Avatar for Anuradha Mandal
0
144
Member Avatar for adri00713

Can anyone help me !!! i need to create a library system using java and i don't know where to start so can anyone suggest steps on how can i create a successful application .

Member Avatar for Anuradha Mandal
0
113
Member Avatar for dhea_andiesss
Member Avatar for Anuradha Mandal
0
148
Member Avatar for comp_sci11

I'm currently making a program that list all the perfect numbers from 1-1000. and list also its factors. heres my code. [INLINECODE] public class perfect { public static void main(String[]args) { int sum=0; int x=0; for(int num=1;num<1000;num++) { for(int factor=1;factor<num;factor++){ x=num%factor; if(x==0) sum=sum+factor;} if(sum==num){ System.out.print(num); System.out.print("The factors are "); for(int …

Member Avatar for gihariwathsala
0
1K
Member Avatar for sahil1991

hello frndz, i was trying to implement a client server communication example.her's the code [CODE] import java.net.*; class client_server_communication { private static int client_port=4444; private static int server_port=4476; private static int buffer_size=1024; private static byte[] buffer=new byte[buffer_size]; private static DatagramSocket ds; private static byte buff[]=new byte[buffer_size]; public static void server() …

Member Avatar for NormR1
0
260
Member Avatar for minimi

I updated JDK/JRE to the latest Java SE 7 version but I was wondering what's the environment path to it. I remember Java 6 Update 26 used to be C:\Program Files (x86)\Java\jdk1.6.0_26\bin So would Java SE 7 be something like C:\Program Files (x86)\Java\jdk1.7.0_00\bin I wasn't quite sure because this version …

Member Avatar for NormR1
0
171
Member Avatar for emorjon2

Hi all! I want to start making apps for android phones. The problem is that I have installed Android SDK, JDK 7 and eclipse, but failed to complete the install of the ADT plugin. I have install the plugin, but I can't configure it. the guide on android developer saids: …

0
139
Member Avatar for gedas

hey, i have a JTextField, the values entered in to the text field should be added to one dimensional array after a click of a button. its an int array. the values entered into the text field are separated by a comma i.e. 12,23,2,0,1 how am i meant to separate …

Member Avatar for NormR1
0
139
Member Avatar for Majestics

I have googled alot exampled to create auto complete jcombo box, found many libraries also codes but they are pretty much complex, has any one idea to create this as easy as possible????

Member Avatar for Majestics
0
1K
Member Avatar for nikolaos

After login (if succeed) a user will see the result of statement "select test_column from table_test " execution. table_test is the only table of database 'test' which i have created in NetBeans 7.0.1. test_column is the only column. class '[B]MySQLTest[/B]' creates the gui for login , connects with the database …

Member Avatar for nikolaos
0
2K
Member Avatar for dwayned

Hi, I am trying to write an applicaiton which will run 2 zip files (one after another) with minimum user input. I can get the file to run but it is then waiting for the user to select "Unzip" to unzip the file. I was wondering if there is a …

Member Avatar for dwayned
0
1K
Member Avatar for betny

[CODE]private String [][] personalDetails() { logger.debug( "personalDetails()" ); String personArray [][] = { { "John", " Muray", "1-10-1982" }, { "Peter", " Kamau", "2-5-1987" }, { "Mary", " Wambui", "8-5-1988" }, { "Bethu", " Kips", "8-8-1987" }, { "Cetera", " Omosh", "2-5-1987" } }; return personArray; } /** * Demonstrates …

Member Avatar for JamesCherrill
0
163
Member Avatar for syeda amna

hi I want to resize the panel that is on the NORTH/Button1 (PAGE_START) of the Border layout. how can I get broad panel?? Is it possible or not?? [ATTACH]22085[/ATTACH]

Member Avatar for JamesCherrill
0
137
Member Avatar for RykeTech

Hey everyone, I have a couple of Vaadin projects deployed as portlets in Liferay and they work great, but when I add the Vaadin compiler portlet I receive an error (displays twice in each portlet) within my two deployed portlets. I have compiled using the Vaadin Widgetset Compiler portlet after …

0
53
Member Avatar for Natique

Hi! I'm trying to send data from a mobile application written in Java ME, to an ASP.NET website connected to an SQL server. I tried to open an httpconnection output stream in the Java ME application, and send the data in a POST to the website. The problem is I …

Member Avatar for Natique
0
217
Member Avatar for Upoma

I am developing a desktop application in Java using Netbeans and MySQL database.Now i want to distribute the software.How to distribute the software along with the database?What is the total procedure.Should i use any software for this?

Member Avatar for Upoma
0
256
Member Avatar for MissJava

Hi everyone! I need some help in my programme. I have an error message: "error: int cannot be dereferenced" at line 134. Could you help me solve this problem, as I do not know what it means? Many thanks. [CODE]/** * @(#)PrizeCollection.java * * PrizeCollection application * * @author * …

Member Avatar for JamesCherrill
0
7K
Member Avatar for betny

[code]/* * @author BKChepkwony * Created on 24 Aug 2011 */ package com.jjpeople.arrays; import org.apache.log4j.BasicConfigurator; import org.apache.log4j.Logger; /** * Class demonstrating usage of arrays * * @author BKChepkwony * Created on 24 Aug 2011 */ /** * @author BKChepkwony * Created on 24 Aug 2011 */ public class ArrayExample { …

Member Avatar for betny
-1
185
Member Avatar for Slobo_89

I need to write a program for drawing concentric squares. Program with the first click of the mouse determines the x and y coordinate of first corner of the square. Then, the mouse moves and the second click determines the point of the opposite corner. I wrote the first part …

Member Avatar for NormR1
0
910
Member Avatar for wondering_ed

Problem: solve the following Source of SHORTEST DISTANCE path of A,B,C,D,E,F,G. I already did link the strings of dots of ABCDEFG and made a polygon which is the other objectives, my only problem now is calculating the source of the shortest distance part of A,B,C,D,E,F,G. Am using net beans. Guys …

Member Avatar for raymagosi
0
165
Member Avatar for vishal1949

I am making a program of vehicles and i have to make a car garage class. In the class the max amount of vehicles that could enter are 20 or 25000 lbs. I wrote the charstack and the pop() and the push() but dont know how to limit it to …

Member Avatar for raymagosi
1
270
Member Avatar for Nathan_11

I am new to computer programming. Could someone explain me this code... s=0; for(i=0;i<5;i++){ s=2*s+i; } And how did it have the output 0,1,4,11,26;

Member Avatar for JeffGrigg
0
125
Member Avatar for ecclesiastes3:1

Good Day... the problem is that the Jbutton is not displaying in my Jpanel. can you help me, this will help me a lot, Thanks Here's the code [CODE] import javax.swing.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.net.URL; import javax.swing.JButton; import javax.swing.JOptionPane; public class GameBoard extends JPanel implements ActionListener { JButton …

Member Avatar for ecclesiastes3:1
0
297
Member Avatar for krovi
Member Avatar for krovi
Member Avatar for nera1981

Hi, I am biginer to java. I need to make a class method that retrieve specific row values from database (using ID), and then to make new class instance using those values (as field properties). I wrote code for the first part(getting row value from ID), but I need help …

Member Avatar for nera1981
0
152
Member Avatar for Netcode

I deal with vb.net, but i want to take a look at java. Whats your advice on things to expect?

Member Avatar for Netcode
-1
227
Member Avatar for AJG

Hi everyone, I'm new to Java and a relative newbie when it comes to programming in general. I've been learning a bit from some Youtube tutorials dealing with Java basics. They've been very helpful and I've been able to create a basic game setup with my new knowledge, with a …

Member Avatar for AJG
0
283

The End.