Results 1 to 3 of 3
- 08-08-2008, 05:55 PM #1
HelpNeeded!!!Facing Problems in a Project
(i hope i'm using the right terms so correct me if i'm wrong )
There are two classes: Purpose(main Class) and Manager
Using NetBeans and bothclasses are in the same package
( code below)
Objective:the each button from Purpose.class will open its Manager.class
with its respective JComboBox content
Problem:1.Purpose compiles fine.But in Purpose i've put icons for JButton
Q.How do i make the icon cover the whole JButton
Q.how do i send data to Manager class
Q.after Building the icons Dissappear(though i used Url)
2.Manager during shows : Exception in thread main"
java.lang.ArrayIndexOutOfBoundsException
at Manager.main(Manager.java:76)
BUILD SUCCESSFUL //But Does not show any window
Q.Since depending on Button pressed in main
strings will be sent to the JcomboBox in Manager
respectively.How do i come about that is there a better way.
PS. I am a beginner and am learning form the tutorials online.So if any suggestions to write my code code better(or some other form of expressing it) will be appreciated.
also i'm having a lot of trouble with Layout and Alignment .
would like to have a layout like this for Manager.
Ps.Attaching the layout desired
any link you'd like me to read that are already posted(having trouble find the right keyword to enter in the search )
- 08-08-2008, 06:17 PM #2
Look at line 76 in Manager.java and see how the index could be out of bounds.Exception in thread main"
java.lang.ArrayIndexOutOfBoundsException
at Manager.main(Manager.java:76)
What was the value of the index when you got the above error?
Without the full text of the error message and the source code lines, no one can help you.
- 08-08-2008, 06:44 PM #3
txt file
the code is in the Txt file attachment and line 76 is in main
public static void main(String args[]){
int n=Integer.parseInt(args[0]); //line 76
new Manager(n);
}
Didnt post the code(directly) because its takes quite some space.
should i post the enitre codeLast edited by goodwillwins; 08-08-2008 at 06:48 PM.
Similar Threads
-
Project Help
By XxHEXSORxX in forum AWT / SwingReplies: 4Last Post: 01-28-2009, 10:01 AM -
Could anyone help with project?
By billdara in forum New To JavaReplies: 1Last Post: 03-12-2008, 05:05 PM -
First Project Need Big Help
By earl in forum New To JavaReplies: 1Last Post: 01-18-2008, 06:12 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks