Recent Comments
Delicous Links
- No bookmarks avaliable.
About
Links
Med Blogs
topmenu
updated
Category Archives: swing
SQuirrel SQL Client
I have been testing out SQuirrel SQL Client today. SQuirrel first came out a few years ago and it has recently been resurrected. Version 2.0 officially came out Aug. 23. It is built with Java Swing and so is supposedly … Continue reading
Posted in General, java, open source, swing
Comments Off
Leaving the cozy IntelliJ womb
IntelliJ IDEA can make you feel like a genius. Using IntelliJ, you can write java code fast and it works the first time. It has a nice friendly environment that can lull you to a sense of well-being. Being a … Continue reading
Posted in intellij IDEA, java, swing
Comments Off
JFormattedTextField fixes my dates
If you use a JFormattedTextField in Swing to accept user entered dates, you may be annoyed by the default behavior of correcting dates. If the user enters “March 36th”, it will automatically “fix” it to read “April 5th”. Clever little … Continue reading
screenshot of Swing App
Here is a first shot (O.K. – fifth shot ) of a particular screen for the lake survey application. If anyone cares to, I would love some feedback. It is kind of the template for all the parent-child editing screens … Continue reading
Posted in Computers, General, java, swing
5 Comments
bizarre swing behavior
Ahhh Swing. If I have a JList and put a ListSelectionListener on it, the listener will fire twice, once for the item you select and once for the item you de-select. Except if you downclick and move the mouse around … Continue reading
A thing about Swing
The default behavior for rendering an object in a JComboBox is to call the toString() method of that object. If you don’t have a toString() defined, the JComboBox shows an object ID. So, the first try at using a JComboBox … Continue reading