October 25th, 2011 12:09 PM
Hi everyone! I need some help
I have a jTable that uses a model for handling data
Then, in another class, depending of the class, I erase all the content of the model (and the columns)
October 4th, 2011 04:17 PM
the parent is being sent from the main window, which is a JFrame
here it is:
ExtensionUI extensionUI = new ExtensionUI(this, true);
extensionUI.setVisible(true);
the printMethod is in the main...
October 4th, 2011 11:45 AM
Hello everyone, from my main window, I am opening a new JDialog window and I want to send a parameter from the main
Opening the new window
ExtensionUI extensionUI = new ExtensionUI(this, true);...
October 3rd, 2011 02:49 PM
hi everyone, I have an empty JTable and I want it to be invisible (it already have no borders as properties)
already tried with setVisible, opaque and others
thanks
September 29th, 2011 03:28 PM
ok problem solved, use setColumnIdentifiers better than addColumn, it just replace columns
September 29th, 2011 01:51 PM
how can I change the absolutePath to point my neatBeans project, so anytime I want to get a resource, I just need to put /resources/img?
thanks Norm
September 29th, 2011 01:42 PM
hi everyone, I have a DefaultTableModel that I built with tableModel.addColumn("dasdasfasfs"), thereafter I fill it with addRow.
I want to reuse the tableModel, but before I want to clear it (rows...
September 29th, 2011 01:14 PM
File file = new File("/resources/minilogo.png");
System.out.println(file.exists());
it throws me false, and the file.getAbsolutePath() is C:\resources\logo.png , but it is in my project folder,...
September 29th, 2011 10:38 AM
I changed imgURL with "/resources/img.png" but still not working
September 28th, 2011 01:52 PM
Hi everyone, I need to set an image to the window of my application
I've heard it is this way
frame.setIconImage(new ImageIcon(imgURL).getImage());
but not working, I know setIconImage needs...
September 20th, 2011 07:42 PM
wow thats beyond my narrow knowledge, i will try something and come back to the forum! thanks for helping
September 20th, 2011 11:58 AM
Hi everyone, its my first time in this forum!
i am kind of new to java programming and iam about to start a project, a java web start application
for now, i need to know how can I develop a bar...