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 Chriss Miller 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. new2this2002

    Automate command promt input

    http://www.developer.com/java/other/article.php/10936_2212401_4 ... simple examples of using the robot to control mouse/keyboard input .. the keyboard example on that page should hopefully give you what you need
  2. new2this2002

    JTree multiselect Drag and Drop

    excellent examples from javaworld ... http://www.javaworld.com/javaworld/javatips/jw-javatip97.html http://www.javaworld.com/javaworld/javatips/jw-javatip114.html
  3. new2this2002

    Is there a Open Source Java Dictionary?

    this any good to you? http://today.java.net/pub/a/today/2005/08/09/didyoumean.html?page=1
  4. new2this2002

    Read Date on File?

    you can use the 'lastModified()' method of the File class, it returns a long value, you can then use the 'setTimeInMillis()' method of the Calendar class, from there you can get the various parts of the modified date/time of the file http://java.sun.com/j2se/1.4.2/docs/api/java/io/File.html...
  5. new2this2002

    Securing PHP

    just using the php.exe ... so if i do 'php.exe fred.gif' .. if there is php code in the gif (basically a php file renamed as gif), it gets executed. I only became aware of this after someone hacked one of my servers
  6. new2this2002

    Securing PHP

    Is there a way in which i can prevent php from processing files other than file with .php extension. The reason I ask is I am able to place php code within an image file (disguise it) and php executes the image file as if it were a php script...is there anyway to prevent this? i am using PHP...
  7. new2this2002

    Input rules on a TJext area

    what about the JFormattedTextField class... you can read more here http://java.sun.com/docs/books/tutorial/uiswing/components/formattedtextfield.html i think it may do what you are after
  8. new2this2002

    Jar / Manifest File Questions

    This taken from 'http://mindprod.com/jgloss/jar.html' Up until JDK 1.5, java.exe ignored this entry. Note the list is space-separated, not semicolon-separated as in the SET CLASSPATH=C:\;. Note also that only relative directories and jar names are permitted using / not \. You cannot use C:\...
  9. new2this2002

    Message box at front of screen

    i also ran into this problem, i think i solved it by attaching the JOptionPane to another component such as a JFrame
  10. new2this2002

    valign center

    well that certainly sorted it and gave me some nicer code....thanks very much for the quick repsonses and help :)
  11. new2this2002

    valign center

    apologies....i omitted some information...after adding the <form style="margin:0px;border:0px;display:inline"> the size of the table shrunk in height so i added... <td width="50%" valign="middle">content<br /><br /></td> which vertically centered the combo box...but sent the 'some...
  12. new2this2002

    valign center

    i have added <form style="margin:0px;border:0px;display:inline"> that now vertically aligns the combo box in the center...but the 'content' is now vertically aligned at the top
  13. new2this2002

    valign center

    it must like the 'valign' attribute otherwise the 'content' would not be vertically centered
  14. new2this2002

    valign center

    I have the following code..... <table cellspacing="0" width="100%"> <tr> <td width="25%" valign="middle"></td> <td width="50%" valign="middle">content</td> <td width="25%" align="right" valign="middle"> <div> <form> <p> <select> <option value="original" selected="selected">original</option>...
  15. new2this2002

    CSS Div Absolute Positioning

    Excellent, thanks for the lightning fast response, that has solved it.
  16. new2this2002

    CSS Div Absolute Positioning

    I have the following code <?xml version=\&quot;1.0\&quot; encoding=\&quot;utf-8\&quot;?> <!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot; http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd &quot;> <html xmlns=&quot;http://www.w3.org/1999/xhtml&quot...
  17. new2this2002

    Getting values from ASP into Flash

    pixl8r, thanks very much.
  18. new2this2002

    Text Color

    Use the setForeground(Color fg) method.
  19. new2this2002

    Getting values from ASP into Flash

    Could you explain how you use the <param name=&quot;movie&quot; value=&quot;images/newbanner.swf?var=<asp code; variable here>&quot;> within flash, what do you have to do in order to access this value??
  20. new2this2002

    How to use applet to get filelist of a directory?

    This page should answer your questions. http://java.sun.com/sfaq/

Part and Inventory Search

Back
Top