Tagged Questions
1
vote
3answers
968 views
Java Application vs. Java Desktop Application in Netbeans [duplicate]
Possible Duplicate:
Netbeans GUI editor generating its own incomprehensible code
In Netbeans(older versions), there are two types of applications to choose from when you're starting a new ...
0
votes
0answers
86 views
Refactoring/ Redesigning an application which uses Swing Application Framework creates NullPointerException
I'm currently in a project which is a spring application made with SAF back when it was still compatible with Netbeans. (7.0.1) I'm tasked with cleaning up the application. The project needs some ...
1
vote
1answer
273 views
swing layout - center panel to scroll with multiple JEditorPanes
Im having trouble getting Swing layouts to do what I want. I want the Center panel which contains two JEditorPanes to scroll when it contains 'n' Panes of equal (fixed) height.
I've been playing ...
0
votes
2answers
655 views
java.lang.NullPointerException bug when trying to run an app on netbeans
Here is my traceback
Oct 9, 2012 3:58:44 PM org.jdesktop.application.Application$1 run
SEVERE: Application class sampleapp.SampeAppApp failed to launch
java.lang.NullPointerException
at ...
1
vote
1answer
135 views
implementing a class in class
I am trying to implement a class in a class in JAVA, like this
package test;
import java.awt.event.*;
import javax.swing.*;
/**
*
* @author jackandjill
*/
public class Summingup extends JFrame {
...
1
vote
1answer
114 views
Creating a Java Desktop UI which can be understood by Eclipse and Netbeans
Netbeans recently dropped support for Swing based Java Desktop Applications from version 7.1 onwards. Till that point I had always imagined that creation of Java Application User Interfaces would be ...
0
votes
1answer
339 views
In FrameView is not showing JDesktopPane and JinternalFrame on Windows OS
Im using netbeans 6.9 and ubuntu. I make a Simple Java Desktop Application thas cames with netbeans wizard.
Then when I tried to run on linux the jdesktoppane show me on the bottom of my application ...
2
votes
1answer
737 views
How do I port a Java Desktop Application to Netbeans 7.1
In Netbeans 6, I wrote a fairly complex application based on the java desktop application (org.jdesktop.application. SingleFrameApplication).
The Swing Application Framework has been removed from ...
0
votes
2answers
575 views
org.jdesktop.swingbinding.JTableBinding$BindingTableModel cannot be cast to javax.swing.table.DefaultTableModel
Now I tried to group jtable header and for that I want to get the DefaultTableModel of current Jtable. but When i tried to retrieve the table model like...
DefaultTableModel dm=(DefaultTableModel) ...
2
votes
0answers
276 views
hiding and showing java desktop app with action listener
I have a java desktop app I made writing with netbeans.
What I did is to listen to windows close and minimize to the tray.
I added to myApp.java a listener on startup method that listen to window ...
2
votes
1answer
87 views
launch() takes time to run
Hey guys i have a big doubt which i noticed today in my developed java swing app..
The problem where i found is launch()
When i try my developed app locally it runs without any delay but when i try ...
0
votes
2answers
279 views
java swing single application
This has been driving me crazy and maybe someone here can help me out. I have created a layout using Netbeans 7.0.1 using swing - its a SingleFrameApplication. Now on my laptop i have Netbeans version ...
0
votes
4answers
206 views
Get the application closing event
How to get to the application closing event?
I want to get application to save all unsaved operations or show the user a message "Are you sure about closing without saving all data?" something like ...
0
votes
3answers
227 views
Building a GUI for a small desktop application [closed]
I am currently working on a small desktop Java application which will track various data such as employee hours, job-site investment, and a few other things. So far I've been able to knock out most ...
0
votes
2answers
762 views
How to get Timer (Util or Swing) to allow me to call a method in a Netbeans Desktop Application Program?
(full source code at the bottom)
So for a quite of bit of time now I have been working on this. I have an ultimate goal, but for the sake of learning how to do this I have created an application that ...
5
votes
3answers
1k views
Transitioning from the Swing Application Framework (JSR 296)
A few years ago JSR 296 introduced a framework to create desktop applications in Swing. NetBeans provided tight integration with the reference implementation. I drank the Kool-Aid(r) and created a ...
1
vote
5answers
88 views
How to stop user from generating more events?
I am developing a java swing desktop application. The dialog form has an ok and cancel button. When the user clicks ok button the application does some processing. How can I stop user from clicking ok ...
1
vote
1answer
628 views
Binding Swing components to Java objects
I'm currently working on a Desktop Application in Java using Swing. I’m using the beansbinding framework by jdesktop.org to synchronize the state of GUI components and data objects. However I’m ...
3
votes
0answers
1k views
Multiline JTable Cells with auto height- extra large first row
I am developing a Java Desktop Application (jdk1.6) with Swing. My problem is about Multi-line cells(text-wrapping) with auto-adjusting cell height property in JTable.
I could already implement this ...
0
votes
1answer
336 views
How to refresh JTable Model without overwriting the old model in the view?
I'm developing a Desktop Application in java(jdk 1.6) with swing but having a problem after refreshing the view. Whenever I update the Model of a JTable, I see that the data in this model changes but ...
1
vote
0answers
828 views
Java Swing getToolkit and custom cursor strange behavior
I am creating custom cursors in my Netbeans Java Swing app. For example, where 'cursorImage' is an image file on disk, I create my default cursor like so:
Cursor defaultCursor = ...
1
vote
1answer
2k views
How to create MDI Form in Java
I am trying to create a desktop application where I have three forms for different tasks. Is there any way to create it as MDI in VB.net.
I am using Netbeans 6.9.1.
How to hide or show Internal ...
1
vote
1answer
278 views
Wrap Extended Frame View in a Window
I have an assignment from my university to continue a JAVA card project from the students from last semester, which happens to be sucked. Because we have to carry on with someones work instead ours..
...
0
votes
3answers
539 views
set different look and feels in Swing Application Framework jsr 296
My application uses SAF (jsr 296).
I want to use different look and feels on different platforms:
A default (Java) for Linux
And system (native) for Windows.
ADDED:
So far I hardcoded L&F for ...
1
vote
1answer
516 views
Change text of JTextField from different Class
How can i change the text of a jTextField from other class
Suppose i have Class A in which if i select an item and click create account. I added a tab with same name to my jTabbedPane. This tab is ...
1
vote
3answers
377 views
Apache's HttpClient falls asleep in Swing application
I faced very strange problem. Writing an application to download some data from Internet with proxy server support I decided to use Apache's HttpClient library. jar binaries were successfully added to ...
1
vote
2answers
526 views
Two questions on using Window Listeners in Java Swing Desktop Applications
Please note that my question is regarding the answers in another thread. However, when I posted the question in that thread, it was deleted. So I'm reposting the question here (with a link to the ...
6
votes
2answers
1k views
Netbeans JSR-296, Swing and JavaFX, what are we now meant to use?
I am starting to learn Java development (I used to develop in C++), I am using some older materials, however, I would also like to keep up to date with Java developments and recommendations.
I did ...
2
votes
1answer
141 views
Is there an easy way to develop with Swing Application Framework (JSR 296) AND Jython?
I'm learning Jython.
I developed a simple Swing Application with Jython and it's ok.
Now I would to use the Swing Application Framework (JSR 296).
I did not find any example in Internet.
2
votes
1answer
66 views
Can I change the root directory of the session storage?
Currently the session storage saves all session files in a system dependand folder suited for session state files.
But in one of my applications I want the session files be saved in a special ...
