Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Swing Filechooser: inconsistent column ordering

Status
Not open for further replies.

sapatos

Programmer
Jan 20, 2006
57
AU
hi,

I've a little swing app and part of this uses a basic filechooser. However I've noticed that when you try to order the files by size/name/modified date etc sometimes it works and sometimes not. Is this a common issue as I've started noticing it in other applications such as SqlDeveloper (oracle) which is java based.

Any ideas how to fix this? The code I use is:

final JFileChooser fc = new JFileChooser();
int returnVal = fc.showOpenDialog(WriteSpreadSheetToCsv.this);

I'm pretty sure this was a copy and paste from somewhere on the web.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top