app « GUI « Java Swing Q&A





1. java when app is running and GUI is hidden and then start same app again that notice this and just tell already running app to show GUI    stackoverflow.com

The Title say it all. All I want is to show the GUI on the already started app.
I have file.lock in place singleinstance style app.
I want something lightweight not IPC or javaspace. ...

2. running Swing app on solaris    coderanch.com


Sun Certified Programmer for Java 2 Platform (SCJP)
Sun Certified Developer for Java 2 Platform (SCJD)
Sun Certified Web Component Developer for Java2 Platform, Enterprise Edition (SCWCD)
Sun Certified Business Component Developer for Java2 Platform, Enterprise Edition (SCBCD)
Sun Certified Enterprise Architect for J2EE (SCEA)
IBM Certified Enterprise Developer, WebSphere Studio V5.0

3. Java App (Swing/AWT) in Win tray    coderanch.com

4. Swing App Best Practices Question.    coderanch.com

5. swing app slows down    coderanch.com

We have written a swing app which runs as standalone with Hypersonic DB. Once the user logs on to the app and after start working for 10-15 mins, it slows down drastically and eventually it throws out of memory error I would appreciate if some one point to me some tips to tune my app and speed up(!!!)the garbage collection process. ...

6. cleanup when swing app exits    coderanch.com

Jeff - I should have been clearer on the description of my problem. I know how to close the objects. What I need to figure out where to put the code in order to guarantee that it gets executed. Since the app is interactive, the user can exit at anytime by clicking the 'x' in the corner of the window. If ...

7. how to launch a swing app remotely    coderanch.com

Hello everyone, I'm having a problem figuring out how to launch my swing application remotely. I'm moving it to CVS running in linux. Should I move only the classes and if so, do I need to put them in a jar file. The ideal is to allow others to execute the app remotely instead of installing it on their desktop. My ...

8. Architecting Swing apps - best practices?    coderanch.com

Hello people! About a 2 months ago I've started studying Swing... Don't get me wrong, I've been with Java for several years, have SCJP, and feel pretty confident, but it happens this way, I never doing any GUIs, only server-side stuff. So I started as usually, with samples, books. Read all the books I could find - Manning's "Swing 2" and ...

9. Help for a Farsi (Persian) App    coderanch.com





10. 1st question with app    coderanch.com

Hi I'm diggin' into the search to find a complete answer for this. I'm building an app with 4 different windows: 1.- Logon Window 2.- Select window. 3.- Data work window. 4.- Bye window. Actually everyone is an extension of a JFrame, I create and set visible the new window and dispose the old one. Looks good untill I create the ...

11. Accessing website from swing app.    coderanch.com

12. Java Swing App in NetMeeting    coderanch.com

I'm trying to demo my Java Swing App to users in different locations using NetMeeting. All other applications are coming like charm when I share, but NetBeans and this Java App are coming as blank screen only the Title Bar Shows up. I tried different settings, and I did spend time on looking in the net searching for this issue. If ...

13. How to implement overall Swing app flow?    coderanch.com

Hello, I have a question about general application control. I'm building a very simple MVC Swing thick-client app for my own enlightenment -- relatively new to Java, working through the trails. A bit of background: I have a very strong MS Access background (please don't hold it against me). Oversimplifying the story, Access practically forces the developer to adopt a particular ...

14. Optimizing my Swing app    coderanch.com

Hi, I have written a Swing application that contains a few JPanels, JButtons, JTextFields, and JLists. However it's proving to be quite slow. This means that for example when I minimize then maximize the main window, it takes a while before the components show on it. Similarly, when starting up the app, it takes quite a while for the components to ...

15. Will AJAX Kill Treditional Java SWINg Apps    coderanch.com

Hi, I am a Java SWING developer and have been following the AJAX for some time now, from the articles and Discussion forums we normally get a impression that AJAX has evident advantages over traditional SWING based applications and that AJAX is all set to phase off SWING slowly, I am a bit confused as I still find lot of projects ...

16. how to eliminate flicker in this simple slideshow app?    coderanch.com

Hi, Any help would be appreciated. Thanks - Mark -- cut here -- import java.awt.Dimension; import java.awt.Frame; import java.awt.Graphics; import java.awt.GraphicsDevice; import java.awt.GraphicsEnvironment; import java.awt.Image; import java.awt.Toolkit; import java.io.IOException; import java.util.ArrayList; import java.util.Iterator; public class Slideviewer006 extends Frame { private static final long serialVersionUID = 1L; private ArrayList slides = new ArrayList(2); private Toolkit toolkit = Toolkit.getDefaultToolkit(); private Image image; final ...





17. Is every Swing app rich?    coderanch.com

Swing applications are always rich in the strict definition of the term "rich client." A rich client is simply an application that does storage and process locally. Thin clients, like web sites, do storage and/or processing remotely. That's why we came up with "filthy rich clients" to mark the difference between rich clients: those with regular UIs and those with animated, ...

18. Running Swing/GUI apps from a tty    coderanch.com

At my current job I am working with an engineer that is non-sighted. He is a brilliant guy and I am trying to help him along the trail towards Java-land. Some work we have done here has caused us to want to do some heap dump analysis and one of the tools that we are trying to use actually adds command ...

19. Making swing app as standalone program    coderanch.com

20. Sychronize swing app with main    coderanch.com

Hi, I am rather new to Swing. I have a java application which needs to pop up a dialog to capture certain user inputs. Till the dialog is closed, my caller method (say 'main') should block. public static void main(String[] args) throws Exception { System.out.println("start"); SwingUtilities.invokeAndWait(new Runnable() { /* i understand invokeAndWait waits only on Event Dispatch Thread. Is there any ...

22. Problem managing a loop with Swing app    coderanch.com

Okay, new to Swing. I am moving a command line application to Swing and want to manage a processing loop (stopping and starting it.) On startup the application kicks the process off and I will stop it or restart it. The stop was easy from what I can tell but I can't get the process to restart (processTestLoop.) Here is the ...

23. JavaSE Swing app minimizes automatically    coderanch.com

hi! im new here, great forum. im from argentina, so sorry about my ugly english. i have a javaSE app thay minimizes automatically every time y click the ok or the yes/no button of a dialog. it has been developed under linux in netbeans 6.8, (hibernate/JPA/MYsql) using @Actions for buttons with the ide facility. running the app in linux it works ...

24. uncaughtException in Swing app    coderanch.com

25. creating apps for internal use    coderanch.com

26. Standalone Netbeans GUI App    forums.oracle.com

I have searched diligently for the answer to my problem with creating a standalone GUI from Netbeans and I still cant find the solution that works. I am sorry if this question has been worn out but I still cant get the help I need and this posting is my last resort. I made a simple GUI in Netbeans 6.5 and ...