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

  • Users: Jroyal
  • Order by date
  1. Jroyal

    creating animation using SWING?

    i want to move the jtextfield on pixel to the left to simulate this: http://www.cs.oswego.edu/~mohammad/classes/csc241/samples/sort/Sort2-E.html but i am using Jtextfield for the databoxes.
  2. Jroyal

    creating animation using SWING?

    jluckybox is just a ordenary Jtextfield. datafield1 is a jtextfield, datafield1.setLocation( param, param ); sets the location of the datafield1 to the specified X and Y cordinates. now all i want to do is add one each time to say X and see the jtextfield move..
  3. Jroyal

    creating animation using SWING?

    for (int x=0; x<2000; x++) { datafield1.setLocation(luckyjbox.getX()+x, luckyjbox.getY()); datafield1.updateUI(); } I want it to animate, so that the jtextfield moves from one position to the next one pixel at a time. why isnt it working?
  4. Jroyal

    how to highlight specific line in a jtextarea box?

    Hi, I am creating a program that requires me to highlight an individual line of code: http://www.cs.oswego.edu/~mohammad/classes/csc241/samples/sort/Sort2-E.html If you go the above site, the guy has applet that highlights each line of code, I want to do the same but for a [JtextArea] box. If...
  5. Jroyal

    SCJP worth it?

    only from UK developers, I am studying Masters in computer science at the same time i am wondering if should take the SCJP as it looks very easy for me, was wondering if its worth it? (£150 for the exam) Is it worth the money i guess thats the simple question.
  6. Jroyal

    How to transfer the table data as a parameter?

    please post the entire code of the pages, then we can give you the solution infact the entire solution.
  7. Jroyal

    Reading JVM memeory of active class?

    that just gives me the details of what memeory (space) is being used, what i want is to find out what memeory location is a certain class puting its data in. I.e. a 3rd party program say, a rss feeder, its download data of the net and displaying it on the screenw ithout saving the data, i want...
  8. Jroyal

    connecting to remote server that requires SSL without SSL

    hi, i have this applet orginal run by its developers via SSL to connect to another server via SSL.. Applet --- server now i downloaded the applet and i want to run it from my pc to connect to the remote server but i get this error: ContentControl.connect1(): caught Exception...
  9. Jroyal

    Reading JVM memeory of active class?

    Hi, I would like to read all the memeory address and what is kept in them by the JVM. I dont know what this is called, and i cant seem to find any books or articles on this. can anyone point me to a direction.

Part and Inventory Search

Back
Top