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 IamaSherpa 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: jdk
  • Order by date
  1. jdk

    Sorting a Vector

    Try this........ import java.util.Vector; public class SortVector { public static void main(String a[]) { Vector v = new Vector(5,2); v.add("45"); v.add("5"); v.add("13"); v.add("10")...
  2. jdk

    Sorting a Vector

    Try this..... import java.util.Vector; public class SortVector2 { public static void main(String a[]){ Vector v = new Vector(5,2); v.add("45"); v.add("5"); v.add("13"); v.add("10")...
  3. jdk

    How to create fixed size TextField in the Center of a BordLayout?

    Hey try this........ import java.awt.*; public class FrameEx2 extends Frame{ TextField textField1 = new TextField(); FrameEx2(){ setLayout(null); setSize(500,400); setVisible(true); add(textField1); textField1.setBounds(180,168,129,29); } public static void...
  4. jdk

    how do you send user to a specfic page depending on form input?

    yes its possible! Try this ========================================================= RadioSubmitServlet.java ========================================================= import javax.servlet.*; import javax.servlet.http.*; import java.io.*; public class RadioSubmitServlet...
  5. jdk

    How to create an installable from my .class files in java

    Hi anyone, I have created a Chat application in java, using awt and sockets. Now what I want is to create an installable from my .class files. I want the users to copy my .exe file and when they double-click it , a screen opens which ask where the user wants to install my chat application, then...
  6. jdk

    How to run an applet from a servlet

    Can you just tell me more what are you using to run your servlets and applets. Are you using servletrunner or a jws ? Where do you keep the class files of both applet and servlet ? in detail..... thanks vikas
  7. jdk

    Input to a servlet

    Hey Are all the values which you want in your servlet inside a form tag. eg. all your <input type...> etc. If not then its better if you put all of them inside the form tag, to retrieve it in the servlet. One more thing, can you be a more clear what the situation is where you want to access a...
  8. jdk

    Crystal reports on the WEB

    Hi AnyOne Is it possible to create crystal reports on the Web (in a .aspx file) using the latest Microsoft .NET technology. If so how or pl supply me with a good link. thanks vikas
  9. jdk

    Crystal reports on the WEB

    Hi AnyOne Is it possible to create crystal reports on the Web using the latest Microsoft .NET technology. If so how or pl supply me with a good link. thanks vikas

Part and Inventory Search

Back
Top