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 wOOdy-Soft 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: jsulman
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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 =...
  10. 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 =...
  11. jsulman

    Ant compilation problem.

    I am trying to run a build file that is failing on the javac task. The problem is that my default javac.exe as defined in my Path command is a 1.4 compiler (it has to remain t his way). I am running ant in eclipse and in eclipse I am using a 1.5 sdk. Here is my javac target: <target name =...
  12. jsulman

    Getting Javascript variable into a JSP variable.

    Greetings, Does anybody know how to put variable from JavaScript to a Java variable in a JSP? For example, lets say I have an html select box called sBox that I want to store it in a Java String object. Is there someway to store the currently selected option in sBox to String javaSBox.? I...
  13. jsulman

    ValidatorActionForm

    Has anybody gotten the Struts ValidatorActionForm to work? I have two actions that use the same form and each action uses different elements of the form. From what I understand the ValidatorActionForm should take care of this by allowing me to map the action name to the validation process...
  14. jsulman

    Fixed Size for Select Boxes

    I posted this on the Javascript forum and then realized it would should go here: I was wondering if the was a way to fix the size of the html select objects. I have two select boxes, from and to. A double click moves a selected item to the other select. However, the to box starts out with...
  15. jsulman

    Fixed Size for Select Boxes

    Greetings, I was wondering if the was a way to fix the size of the html select objects. I have two select boxes, from and to. A double click moves a selected item to the other select. However, the to box starts out with nothing and is very small. As I move elements into it, it grows...
  16. jsulman

    Macro Location

    Greetings, I have a question regarding the access of Macros. I am writing a web application that takes data from a database and creates a Gantt chart in MPX format. Since I am creating a number of colums that are not visble in the default template I would like to create a macro that the user...
  17. jsulman

    Single Scroll bar

    Is there a way to have only a vertical scroll bar using CSS. Here is the code I am using: <style type="text/css"> <!-- .contentBox { display:block; border-width: 1px; border-style: none; border-color: 000; padding:0px; margin-top:0px; width:200px; height:50px; overflow:scroll...
  18. jsulman

    Swing and Threads

    Greetings, I am trying to do some work with threads in Swing. I have simplified my problem in the following example. What I am trying to do is simply suspend and resume a thread’s execution by pressing a series of buttons. The frame contains three buttons. One starts the thread, the other...
  19. jsulman

    AutoFormat Project

    Greetings, I am currently creating an mpx file and importing it into Project. I am adding and customizing a number of columns (Cost1, Finish1, Finish2). To do this I am going to the column header and selecting "Insert Column" from the right-click menu. I understand that MPX files cannot...
  20. jsulman

    Project MPX file Problem

    Greetings I am using the mpjx api (http://mpxj.sourceforge.net) to generate an MPX file from a report and import it as am MPP file. The report has a number of columns that are not the default Project display columns. For example I have an Actual Amount that I am adding to the a task. After I...

Part and Inventory Search

Back
Top