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.
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 2 years ago.
Improve this question
I want to create a console application with all the functions of the top command, but through java
how to create this consol app with the top command through java professionally
I think it could be like this one:
Runtime.getRuntime().exec("ps");
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 5 years ago.
Improve this question
Is it possible to create Data visualisation in R and a app in Java and integrate both into one? if not what are the alterneatives..
I would like my app to be able to download the data visualisations i have created in R.
An alternative : Use Shiny package. Create a webpage from Shiny, use ggplot2 to create data visulaizations and add a download button.
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 7 years ago.
Improve this question
Java eclipse: I want to open the form as shown below
http://i.stack.imgur.com/U0wT5.png
You want to make your program look like that? With tabs? If that's the case, use a tabbed pane.
link: https://docs.oracle.com/javase/tutorial/uiswing/components/tabbedpane.html
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.
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.