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 derfloh 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: *

  1. thumpkidd9

    Reloading XML document

    Hey guys, I've spent most of the night trying to figure this one, thought I might hop on here to get some suggestions. My flash file is reading a from an .xml file to pull a music playlist. The xml file will be getting updated when a user add/removes items from their playlist which is coded...
  2. thumpkidd9

    <input type="text"> with onchange event

    Thanks that works. At first I didn't think it did because the letters ran a query on 5000 or so rows and it took some time to send that request through ajax. Thanks again !
  3. thumpkidd9

    <input type="text"> with onchange event

    Hey guys, I had originally posted this under the HTML forum but someone suggested I try here. I was just trying to make a simple script that populates my <div> tag for each letter I type in the search text field. This is the line that calls the search is below where this.value = the input...
  4. thumpkidd9

    iptables NAT table not found

    Hello, I was trying to setup port forwarding on my server using iptables. When checking the /etc/sysconfig/iptables file there is no table entry for `nat`. There is `mangle` and the default `fiber`. When trying to add it manually to the file I get an error when trying to restart iptables...
  5. thumpkidd9

    Shared folders through FTP

    Hello, I was wondering if it was possible to set a home directory of an FTP user into a shared folder of someone on your network. I set this using FileZilla server, and when I log in with that FTP user, there is no directory browsing. I can set his home directory to somewhere on the computer...
  6. thumpkidd9

    Map creation ideas

    Ok, sorry for the long delay guys but thanks for your interest. I got backed up with another project and I had to work on that and sort of forgot about this one. Sedj: 1. You can assume that it is a "flat grid" and 2. I have a House object that has a few fields, some of them being...
  7. thumpkidd9

    Map creation ideas

    There are no requirements so anything is possible. Right now I have 1 picture of my city but I was thinking of seperating it into many pictures in order to lay it out on the grid. An example of its use could be if someone enters a street into a textfield, the place on the map shows a dot or is...
  8. thumpkidd9

    Map creation ideas

    Hello, I wanted to try and create a map program and wanted some input about what is a good way of going about it. I want to keep it simple (no zooming or moving) just one static image. I wanted to do something like a grid, that is a person can live in section Col:A Row:10 of the matrix...
  9. thumpkidd9

    JPanel question

    Thanks, I got it working. Good idea about testing all the methods I will remember that in future. Thanks, ~mp
  10. thumpkidd9

    Recompile with -Xlint:unchecked for details

    you need to add " -Xlint:unchecked $File" (white spaces included) to your parameters field in your compiler. I'm not sure what compiler you are using, but this information comes from me using the lastest version of Textpad. You find it in there in configure->preferences->tools->compile java
  11. thumpkidd9

    JPanel question

    Ok, well how does setLocation work? say I want to default to 2nd textfield, here is just some quick code to get the idea //class fields JFrame frame = new JFrame(); JPanel pane = new JPanel(); JTextField textfield = new JTextField(); JTextField textfield2 = new JTextField(); // inside...
  12. thumpkidd9

    JPanel question

    Hello, I have a bunch of components in a JPanel, some 5 JTextFields and JButtons. The buttons were added to the JPanel first, then the textfields. I was wondering if there was a command to set the position to the textfields when I say, click a button. Thanks, ~mp
  13. thumpkidd9

    JOptionPane

    Lil to advanced for me atm, I'm going to start at the lower level tutorials. Thanks though ~mp
  14. thumpkidd9

    JOptionPane

    Hello, I'm new to this, so far I have just used S.O.P() but I wanted to try and make input a little easier on the user of my program. I wanted to use the showInputDialog() method and I was just curious if there was a way I could allow for multiple input lines in a single Frame. For...
  15. thumpkidd9

    Simple Printing Question

    Thanks for the time and effort you spent on helping me. I got it to work and its working good. All I modified is if a string was entered that was larger than my colwdth, I made a substring of it and added ".." to the end. The next part that I am going to try and do is instead of one colwdth...
  16. thumpkidd9

    Simple Printing Question

    h0h0h0: I'm not sure how SpecialString works and don't know what I need to import to compile that, my java isn't picking it up. Bong: I tried your method but I am a little confused. Were the for loops supposed to be nested because you are referencing i in the second one. Also you said, "then...
  17. thumpkidd9

    Building a Web Proxy Server using URL and URLConnection classes ???

    I've done something similar to what you have and I was getting the same problem with images. If they still aren't showing up after you rewrite all the headers and support HTTP POST as sedj suggests. It might have to do with data conversion between String and Byte. At least that is what my...
  18. thumpkidd9

    Simple Printing Question

    Great ! I dont have time at the moment, but I will give that a shot in the afternoon and keep you posted. Thanks for fast response.
  19. thumpkidd9

    Simple Printing Question

    To answere sedj, I am printing strings to the screen, for example this is way off and depends on the length of dynamically entered values for price, paid..etc: System.out.println("No. \tPrice \tPaid \tAddress \tDevelopment \tCash/Credit"); System.out.println((x+1)+"...
  20. thumpkidd9

    Simple Printing Question

    Hello, I have always wondered this but finally had to implement something that needed it. I want to print values to the screen but with some kind of order. I'm using println() with '\t' character but its not lining up at all. I know there must be a better way to line up the data, which can...

Part and Inventory Search

Back
Top