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

  1. fabiand

    invoking servlet in img tag

    This is a servlet I use for my own. You can easily modify it to read the binary date from your database. Important part is the contenttype you send out. It should be image/jpeg or image/gif. Extract: import javax.servlet.http.*; import javax.servlet.*; import com.hd.common.web.servlet.*...
  2. fabiand

    multiple user servlets

    Only a single instance of a servlet gets created, with each user request resulting in a new thread that is handed off to doGet or doPost as appropriate. When the servlet is first created, its init method is invoked, so that is where you put one-time setup code. After this, each user request...
  3. fabiand

    how can an applet remains in front of your screen?

    Hi How can a java applet remains in front of your screen but not stealing the focus when you are working with another program like Microsoft Word??? Why? I want to create a newsbox (ticker) which remains on top of every window, but never steals the focus. Thank you very much! Fabian

Part and Inventory Search

Back
Top