Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a swing program that is in English and I want my program to be available in another language. I am finished with the English version and I have the button for it placed in the program. I have no idea however what to write under for example actionPerformed(ActionEvent event)? I will translate everything myself, so is there an easy way to do this?
You can use ResourceBundle and change text of all controls in actionPerformed event.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
i want to create a jframe that contains dynamic windows , like the windows group in Netbeans (palette, properties window, projects window ... ), anyone have an idea how to do it in java ?
thanks .
As you mentioned in your comments - JInternalFrame is the typical way to do this in Swing. The Oracle tutorial on JInternalFrames is here.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I made a simple Java program using a JFrame. I want to know how is it called or what type it is. Maybe is it an API? Maybe a form?
If a ask something about my simple Java program
in a forum, I would like to do it properly! I used Eclipse.
Your wording is unclear, so I'm not exactly sure what you're asking. But it seems like that would just be called a Java desktop application.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm making a program for my mother to repay here for all she did with me. I am trying to make a program similar to Cash Register Express. How would I make a GUI similar to it and linking to other pages? And if it doesn't work with Java, any other programming languages?
Start by taking a look at Creating a GUI With JFC/Swing and you will want to pay close attention to How to Use CardLayout
CardLayout used in Swings will be a good option. All the best for your work !
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm coding a project in java. I have a really basic question: how do you get a graphics program? And what libraries do you need?
I know that Processing (which isn't really java) does this for you, but I'm using eclipse.
For desktop apps you should look at Swing, Java2D, and Java3D.
The web is another matter. Your browser choices should include JavaScript libraries like d3.
Eclipse has nothing to do with it. It's just an IDE.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to maintain the tab index. [ which we have in .NET ].
But i want this is on my Java application.
So is their properties or method to do that?
If you're using Swing, check out the Customizing Focus Traversal section of the Swing tutorial.