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 Shaun E 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: donniea21
  • Content: Threads
  • Order by date
  1. donniea21

    Span/Div in netscape

    I have the following code in my html page: <INPUT TYPE=&quot;submit&quot; VALUE=&quot;Upload&quot; onClick=&quot;if (submenu1.style.display == 'none') submenu1.style.display = ''; else submenu1.style.display = 'none';&quot;> <span id=&quot;submenu1&quot; style=&quot;display:absolute&quot;>...
  2. donniea21

    Servlet with applet

    I am new to applets. Is it possible to run an applet from a servlet. Basically what I have is a servlet that uploads files and I want to have an applet running in a separate thread that displays the upload status. Once the upload is complete, I want to be able to kill the applet. Thanks for...
  3. donniea21

    Converting Images with JAI

    Is there a way to convert multi-page tiffs to jpeg? I have a servlet that displays images that are stored on the server. The problem is that they are in .tiff format which Java does not handle. I have created a method using the JAI API to encode the tiff as a jpeg..This works fine except for...
  4. donniea21

    Show Status of upload

    I have a servlet that uploads files to the server. I want to be able to show the status or at least some sort of message until the file is done. Has anyone done anything like this? Thanks for any help.
  5. donniea21

    Call an applet from a servlet

    I need to call an applet from my servlet when a user clicks a link..I am putting the .class file in the same folder as my servlet classes. in the html that i have codebase = &quot;.&quot; code = &quot;mypackage.mypackage2.myApplet.class&quot; this is how JBuilder created it. The problem...
  6. donniea21

    AWT Frame focus with Servlet

    I have a servlet that can upload files. While the file is uploading, i have a seperate thread that simply pops up a frame that says uploading...etc. The problem Im having is that I cant get the focus to stay on the frame so it ends up sitting behind the htm page. I've tried...
  7. donniea21

    emty_BLOB() for MYSQL

    I have a servlet for uploading files to a database. I know in oracle you can insert an empty_blob() into a table. Is there a way to do this in mysql?
  8. donniea21

    Set ENCTYPE with javascipt

    Is there anyway to set the enctype of a form with javascript? I have tried document.formName.ENCTYPE = multipart.... and document.formName.ENCTYPE.value = multipart...... it just keeps the default setting.
  9. donniea21

    Tomcat Manager App

    I have tried using the /manager servlet to re-deploy my servlet opposed to restarting tomcat. I get the OK message but the directory still contains my old templates and class files.
  10. donniea21

    Multiple Sources for ResultSets

    I have a search screen in my servlet to search by name. This search is done on three different dbs using three different connections, retrieving three different ResultSets. No problem there. The problem lies in the fact that thousands of records are possible so I set it up to do paging (10...
  11. donniea21

    Getting user info from server

    I have a servlet running on Tomcat 4.0 which the users can get to from our intranet running on IIS. I know using Windows API calls, you can retreive usernames from IIS, Is there a way to get the username when they come to my servlet? I do not want to use Windows API and I do not want to use a...
  12. donniea21

    SQL SERVER &amp; VECTORS

    The following code returns a resultset which i am putting into Vectors and then sending them to a velocity template. The problem i am having is that each element is being padded to the sql server field length of 40 and also adding brackets at the beginning and end. For example...
  13. donniea21

    Frames &amp; request.form

    I am trying to pass form values from a search page &quot;search.asp&quot; to a results frameset page &quot;reprtDetail.asp&quot;. The top frame contains a static htm page with the column headers for the search so that if many results are returned, the user can still see the headers. The bottom...
  14. donniea21

    I am trying to pass form values fro

    I am trying to pass form values from a search page &quot;search.asp&quot; to a results frameset page &quot;reprtDetail.asp&quot;. The top frame contains a static htm page with the column headers for the search so that if many results are returned, the user can still see the headers. The bottom...
  15. donniea21

    ASP with frames

    I have a search page and I want to pass the parameters from it to a results page which then does the recordset asp code to get the results..The problem is that i want the results page to be the bottom frame of a frames page and have the column headers in a top frame so they are always visible...
  16. donniea21

    Union on AS400 table and SQL Server Table

    Is it possible to do a union on a table from as400 and one from sql server? I have the following: preparedStatement = as400.prepareStatement(&quot;select distinct claimnbr as CLAIM_NUMBER, claimname AS CLAIMANT_NAME, claimsts as CLAIM_STATUS, t1.srcsystem as SOURCE_SYSTEM, polnpo as...
  17. donniea21

    Need Help With request.parameter on url parameter

    I am passing a paramter to a servlet through the url. The parameter has spaces (i.e. parameter=My%20Parameter%20has%20spaces is passed in the url) When i do a request.parameter(parameter) it only returns the first word (i.e. My). How do i get the whole thing? Thanks
  18. donniea21

    HELP SETTING FOCUS

    On my form when the user goes to add or edit an item, the focus is set to the first input box.This is fine but the problem is that it moves the screen so that the first input box is at the very bottom of the screen. Is there a way to set the focus to the input box and also position the screen to...
  19. donniea21

    Set a hidden form variables value

    this function receives the row number from a looped recordset. I want to set a hidden form variable to the row number when they click a radio button next to the result row function editRow(row) { var i = row document.forms[0].edit.disabled = false; document.forms[0].recordNo.value=i; }...
  20. donniea21

    Netscape Problems

    I just wrote an app which runs fine on IE and Netscape except for one rather odd problem with Netscape. My login page does not show up at all...Here is the code for the page. Please let me know what you think..Thanks. <html> <head> <meta http-equiv=&quot;Content-Type&quot...

Part and Inventory Search

Back
Top