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 strongm 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. phimlob

    disabling method from an extended class?

    Hi :) In answer to your last question, from experience I'd say not much at all. Some of my classes are subclassed maybe 7 8 times or so and theres no remarkable difference in effectivity of the system. (these classes all subclass some java class, which in turn often is several steps away from...
  2. phimlob

    Rotating the text in a JLabel

    heh yeah. I put up the file I had been fiddling with, and I forgot to make everything back to what it had been... But it doesnt really change anything. I still get a NPE...<br><br>But thanks for pointing it out!<br>/Mattias
  3. phimlob

    transferring files from client to server

    If you have all the necessary rights on your server, you dont have to use cgi, servlets or rmi. you can just make a connection. heres an example:<br><br>**** Client side: make sure you import all the right packages...<br><br>/** sends a java object to the reciever and returns whatever object the...
  4. phimlob

    constructing a Date from a String

    Try something like this for your second example:<br><br>SimpleDateFormat sdf= new SimpleDateFormat(&quot;yyyy-MM-dd HH:mm:ss.S&quot;);<br>Date yourDate = sdf.parse(&quot;2000-08-02 10:52:15.7&quot;);<br><br>Good luck<br>MAttias
  5. phimlob

    Rotating the text in a JLabel

    Hullo all- While Im at it, here is another problem:<br>What I want is a JLabel with the text rotated pi/2 anti-clockwise. I took a shot at the problem but no matter how I try to tackle it, I find myself either with a NullPointerException or some other problem.&lt;br&gt;<br>Can someone help...
  6. phimlob

    Changing the time for JToolTip to appear (urgent!)

    Does anyone know how to make the JToolTip appear immediately and not after a second or two? <br><br>Thanks in advance! /fimblo<br>
  7. phimlob

    swing classes in browser

    Java applets work inside a &quot;sandbox&quot;- kind of a restricted area. If you want to change the rules governing the sandbox, try the &quot;policytool&quot; program in your jdk1.2.2\bin directory. There you can loosen the restrictions on a specific applet- say one embedded in the...
  8. phimlob

    Setting cell text alignment in JTable

    Thanks- Ill give it a shot :)<br>/Mattias
  9. phimlob

    Setting cell text alignment in JTable

    Hi all :)<br><br>I really need help with this... I have a JTable, and I want to be able to right/left/center justify text in individual cells. Not entire columns. I've looked around a heck of a lot, but I just cant find any methods...<br><br>I was hoping I could place an example html table here...

Part and Inventory Search

Back
Top