Cursor Automatically Goes to Center of JTextFields

I have a simple quesiton for you Java gurus. I have several JTextFields that I am populating with data using JDBC. However, when I click on or tab through the fields, the cursor automatically goes to the center of the box instead of the beginning, regardless of whether or not there is data in the fields. What do I need to do to have the cursor automatically go to the beginning of each field? Thanks a bunch!

[417 byte] By [ScottS.a] at [2007-10-3 5:21:14]
# 1
My first thought is to check the alignment of those field objects:JTextField.getHorizontalAlignment()If that's not it, might there be some existing value (like a tab character or some space characters) already in that field? You can check that
mike.cepeka at 2007-7-14 23:28:11 > top of Java-index,Java Essentials,Java Programming...