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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by hganywhere

  1. hganywhere

    Focus / Action / Key Listeners

    Forgive me if i'm wrong but I recall using the InputVerifier class since release v1.3 ?
  2. hganywhere

    Focus / Action / Key Listeners

    Implementing a focusListener per JComponent although works for a limited nos of components, is quite long and drawn out when you have many fields to provide validation. Why don't you use an InputVerifer class, you can then centralise all your validation logic in one place and do not need to...
  3. hganywhere

    formatting fields

    Yes I have used Tiger for 6 months, the Formatter class along with the Scanner class is well implemented and Tiger is soooooooooooooo fast !
  4. hganywhere

    formatting fields

    Alternatively, if you have access to Tiger then you can start using more advanced formatting functionality with the inbuilt Formatter class : The Formatter class also has the ability to make it much easier to read formatted input. Usage Formatter myFormatter=new Formatter()...
  5. hganywhere

    Custom Data Models - JList

    Tim, thanks alot your right I should have called the super methods, not quite sure how I managed to forget the implementation. Re: __ Incidentally, since you still have to add elements to your model class via a non-type safe addElement(Object o) method your not getting anything by subclassing...
  6. hganywhere

    Custom Data Models - JList

    I would like to use a JList to display employee information and allow add/delete operations on this JList. I am having a problem when adding/removing a record from the JList, the model is being updated but the JList goes blank. I do not use Arrays, Vectors etc to maintain my model. My model...

Part and Inventory Search

Back
Top