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 TouchToneTommy 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: ACRRHODES
  • Content: Threads
  • Order by date
  1. ACRRHODES

    Lists!!!! Arrgh!

    Create a java.awt.List. java.awt.Component.setBounds,setSize, or setLocation it. Add it to your Frame (or Applet). ARRGH!!! The setBounds,setSize, or setLocation didn't work. If you are using a Layout Manager, the List just appears as normal (as expected). If you are using a null Layout...
  2. ACRRHODES

    Security and Proxy Problems

    Dos problemos for you today. Uno: I am sure there are hundreds of people that don't have this problem, but surely many hundreds more do. What is the most efficient, effective, and for heaven's sake non-error-inducing way of opening external files with Java applets? I have programs that...
  3. ACRRHODES

    Weird box character []

    Hi. When I ran one of my Java applets on a different computer from the one I had made it on, about half of my spaces (that were displayed on the screen) appeared as that weird box character that tells you when a letter doesn't exist in a certain font (do you know what I'm taking about?). Do...
  4. ACRRHODES

    Frustrating Error

    Yo. I recently completed my Luge game (you may remember it from a previous thread). It works perfectly in appletviewer at my house, but it: a) Didn't work in appletviewer at work b) Didn't work in Netscape at home c) Didn't work in Netscape at work d) Didn't work in IE at work e) Not sure...
  5. ACRRHODES

    Connecting to PHP Databases with Java

    Whoa! I had my hands full trying to do this, but I finally found a way. It ain't purdy, but here it is: Step 1: Make the following into a PHP file <?php mysql_connect(&quot;localhost&quot;,username,password) or die (&quot;could not connect to database&quot;); mysql_select_db(your_database)...
  6. ACRRHODES

    A mystery with methods.

    I know that it is possible to do the following: public void method(int int_value) { //... } public void method(float float_value) { //... } public void method(String string_value) { //... } And-so-on-and-so-forth. But is it possible to do this: public int method() { //... } public float...
  7. ACRRHODES

    Too big to compile?

    I have a 90-something Kb program (incomplete, too) that refuses to compile avec Q-Basic 4.5. I forget what error message it gives me - I'll add that when I find out - but I'm wondering if there is a size limit on compiling files. *** Dammit Jim, I'm a programmer, not a doctor.
  8. ACRRHODES

    Localhost

    I'm confused. I'm working on a school project and I need step-by-step advice on how to: 1. Connect to 'localhost' with JAVA 2. Use SQL to query my database I have a book that (sort of) tells me how to do this, but I've had troubles finding the right drivers and stuff. I would greatly...
  9. ACRRHODES

    Unresponsive Input

    I have a program that I am working on which is relatively simple. It runs using a thread (start, run, stop), and responds to keyboard/mouse input. The problem is that, though the graphical/technical elements of the program run smoothly, the more advanced my program has become, the less...
  10. ACRRHODES

    A Few Questions About Visual C++ 4.0

    #1: How do you specify a resource ID as a file name: IDS_HELPME instead of HELPME.BMP #2: I can't figure out how to play WAV's #3: How do you make 'static' text change? Thank You, helpful people!
  11. ACRRHODES

    Messing with Location bar

    I want to know how to change the address in the Location bar without changing the page.
  12. ACRRHODES

    Messing with HTML (May be common knowledge)

    You can mess with any named(or arrayed, such as links) HTML tags with the &quot;innerHTML&quot; and &quot;outerHTML&quot; commands.<br>innerHTML refers to all of the HTML within the tags, and outerHTML refers to all of the HTML within the tags, plus the tags...
  13. ACRRHODES

    A Game I've Made

    I've made a neat Javascript game at <A HREF="http://alexsays.serengetigame.com" TARGET="_new">http://alexsays.serengetigame.com</A><br>It's a really fun memory game, but I think it still has a few bugs.<br>Please play it and submit any bugs that you may have found.

Part and Inventory Search

Back
Top