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

Search results for query: *

  • Users: kmcculler
  • Content: Threads
  • Order by date
  1. kmcculler

    IIS 5.0 custom errors

    Hello all, I've been wrestling with an issue around redirecting errors to a custom page via IIS 5.0 that I was hoping someone here could help me with. I'm trying to setup a page that uses asp to do windows authentication. If the authentication fails, I'd like to redirect the page to a custom...
  2. kmcculler

    Selection in disabled JList

    Hi, I've got a lil prob with a JList can somebody help? Setup: My JList displays a list of items and allows multiple selections. Some, none, or all of the items (data dependent) are shown to be selected when the list is created. The user can change the selected items and save... this all...
  3. kmcculler

    Orientational Problems

    Hey guys, I'm having some problems with getting my app to display correctly with RTL (RIGHT_TO_LEFT) orienation. The two components giving me the biggest headache are JScrollPane and JFrame. Im using java 1.4 and setting applyComponentOrientation(ComponentOrienation.RIGHT_TO_LEFT) on all the...
  4. kmcculler

    JFormattedTextField and nulls

    Hey, anybody know how to get a JFormattedTextField to accept null as a valid value? I'm using the default DateFormatter as my format and I want either a valid date or null to be accepted, but nothing else.... Kris McCuller
  5. kmcculler

    selecting higest of multiple values

    Hello, I'm having some trouble figuring out how to do the following in an access query. I'm working on a sales prospect type db and I have various companies listed in a querey with entries for each sales stage(We need to keep info on previous stages to track when potenital clients were lost)...
  6. kmcculler

    toolbar won't let focus go

    Hello all, I've got a prob with an app I'm building. I've got a JToolbar that has a JButton on it that when pressed calls a extension of PAction. This action creates a new JInternalFrame and gives the user some additional info on the item selected allowing for editing of that info, ect...
  7. kmcculler

    rounding errors with BigDecimal

    Hi, I'm having some issues with BigDecimal. I wrote a custom document that accepts only numbers and some symbols as user input for a textfield. In this document I have a method that gets the input number as a BigDecimal (there are some other methods in the application that take BD as input)...
  8. kmcculler

    altering layout of JOptionPane

    Hi, Could anyone help me figure out how to change the way the static showInternalConfirmDialog method of JOptionPane lays out the textcomponents I pass to it? I'm using the confirm dialog as a sort of popup edit. I pass as my message an array of Objects (such as JLabel...
  9. kmcculler

    Problems with JSlider

    Hi, I'm having a prob with JSlider and was hoping somebody may have already dealt with this issue. I'm displaying my slider on a panel (with gridbag layout) inside a frame. When the user first opens the frame my sliders (there are 3 in the panel) just aren't there. If the user resizes the...
  10. kmcculler

    Manipulating PlainDocument

    Hi all, Hope there's someone out there knowlegable about documents (specifically PlainDocument) that can help me. I'm working on a rather small part of a very large project, but it concerns the use of an extended PlainDocument that keeps track of and changes my data objects (built from an...
  11. kmcculler

    Multiple text components kept in sync

    Hi, I'm lookin at a rather multilayered problem concerning Javax swing text components. In a nutshell I have several JTextFields spread across multiple panels(like in tabs or an inactive window the user could click back onto) that represent the same data, so they have to be kept in sync with...
  12. kmcculler

    rendering JPanels in a JList

    Hi all, I'm trying to display some JPanels (with various controls and such) on a JList.. each cell of the list would be its own panel providing info on diffrent database info I pass to it. Can anyone help me to do this?? when I just added the panel to the listmodel I got the toString of the...
  13. kmcculler

    modal internal JOptionPane Dialogs

    Hi all, I'm looking for a way I can use a confirm dialog internally while still keeping it modal. When I use JOptionPane.showInternalConfirmDialog the box comes up fine, but I can still click and manipulate objects in the frame in the background. Besides just not being secure this is causing...
  14. kmcculler

    Getting 10 largest values from a Vector

    Currently I am loading 2 Vectors from an XML file read. The first Vector "values" has scores(stored as a BigDecimal), the second "labels" contains an appropriate label for that score (String). Im loading them fine, but my next step is to find the 10 largest scores and print...
  15. kmcculler

    Recommendation for Graphs?

    I'm working on developing some front end stuff for my java application. I need to do some graphic charts from my xml data. Does anyone know of any graphing classes that they could reccomend that I use? They don't have to be free, but hopefully not overly expensive. Basically I'm looking for...
  16. kmcculler

    converting objects in a vector to array of primitives

    Situation: I've got a Vector full of Double (object) numbers that I need to pass to a charting module witch only accepts an array of primitive doubles. Question: Is there any better way to create a double[] from my Vector than to move through each element of it and build an array step by step...
  17. kmcculler

    Interpreting Dates

    Hi, My problem lies particualry int the way Access interprets dates when read in from a file. Ive tried having several diffrent date formats in the file but I can't seem to find one that access consistanlty interprets correctly. (this is a flat file with a series of sql statments to be run...
  18. kmcculler

    Error when loading Acess2k Runtime

    hi, Most of my usuers are fine, however, with one Im getting an error when trying to install the Access 2k runtime. "Cannot Install Installation Package" the user is running WindowsNT.(but so are others that were successful installs) Usually the access runtime install is called...
  19. kmcculler

    Icon Changing

    Hi, Ive got a Access2K application that Ive made and built and install package. I am having a problems with a user that installs my package when using Office97 on WinNT (Access 2k Runtime also installed) The icons for Access97 change from its normal "gold key" to what appears to be a...
  20. kmcculler

    Extending Data Models

    Does anyone know how I can extend an existing model (specifically Im trying for DefaultListModel) to accept a boolean status along with the object in the list? Im used to programming but new to Java so Im probably just overlooking something simple... Thanks Kris McCuller...

Part and Inventory Search

Back
Top