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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jsulman

  1. jsulman

    Double Quote in Mouse Over

    That worked. Thank you Vragabond. Obviously I do not work in HTML all that much.
  2. jsulman

    Double Quote in Mouse Over

    Does anybody know how to get a double quote (") in a mouse over. I want to display something like this: Select "Test" Button. I've tried every combination of single and double quotes but I cannot get it to work. I am using the title attribute to do it. Here is what it looks like. <input...
  3. jsulman

    Change Input Text Size Dynamically

    I figured it out. Use a css and modify the object.style.width property.
  4. jsulman

    Change Input Text Size Dynamically

    Is there a way I can change the size of a input text dynamically? I have a form with the following field: <input type="text" name="month" id="dobMonth" size = "1"> I hoped I could do something like this: var vMonth = document.getElementById("dobMonth") vMonth.size= 8 and have the size...
  5. jsulman

    Testing if Javascript and Cookies are Enabled

    Is there a way in a Java servlet that I can test to see if the browsers Javascript and cookies are enabled? Thanks in advance. Jeff Sulman
  6. jsulman

    Selecting Text In an Input Field

    Thank you MikeyJudd. That was waaaaaay to easy. Jeff
  7. jsulman

    Selecting Text In an Input Field

    Greetings, When tabing from one text field to another in an HTML form when you land on a field all the characters are automatically selected. I have a text field that is performing some function that "unselects" the text. Is there a way in JavaScript that I can programatically reselect all the...
  8. jsulman

    From Java to C#

    Hello, I have a quick question. I am currently a Java developer with about 7 years of J2EE experience. I have been asked to go to a C# .NET environmnet and was wondering if any of you had made the transition from J2EE to .NET and what books you found the most helpful? I am not on a fast track...
  9. jsulman

    External Database Password

    Greetings. We have about 300 reports running on BOXI. In order to set the password we have to go into the Central Management Console to set the report’s database default information for logging into the datasource. In here we set the password. The problem is our DBA is instituting a...
  10. jsulman

    Connection Problem

    Found the problem. The default domain name given in the SQLNET.ora file was being appended to my service name. It was trying to connect to CEAS_MCC.whateverthedefdomnameis.com. When the service name has an IP address in it like M.122.22.33.123 it does not append the default domain. So...
  11. jsulman

    Connection Problem

    Greetings, I am having a strange problem with connecting to ORACLE. I have just installed the client 9.2.0.1.0. When I use a service name like CEAS_MCC I get a 12154 error TNS Could not resolve service name. However, if I add the IP address to the service name like M_152.225.91.090 I can...
  12. jsulman

    Null value in string for param.

    Greetings, I am creating a hyperlink in the Format Editor. Based on a field being 'Other' I want to either pass the value of the field or a null value. The null value will then be passed as a parameter to a stored procedure so it cannot be sent with quotes. Does anybody know how I can do...
  13. jsulman

    Apache Commons FTP Error

    Greetings, Has anybody used the Apache Commons api for FTP? I am trying to get a list of files on a unix box via ftp and by this simple method: FTPClient ftp = new FTPClient(); try{ ftp.connect(server); ftp.login(userId, password); FTPFile[] files =...
  14. jsulman

    getParameter() problem

    sedj The problem is that it is taking about 30 seconds on the OAS and about 2 seconds on Tomcat. "Does anybody know why this command would take so long on an Oracle server but not Apache?" Thanks Jeff
  15. jsulman

    getParameter() problem

    Greetings, I have a question for those of you who have worked with Apache and the Oracle 10g app server. I am running an application on both Apache and Oracle 10g 10.1.2.0.2. I am sending a large zip file wrapped in an xml as a parameter. When executing a Enumeration enum =...

Part and Inventory Search

Back
Top