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

  • Users: celia05es
  • Content: Threads
  • Order by date
  1. celia05es

    Select a table cell by clicking on it!

    Hello, I have a table with only one visible cell. Now, if the user selects one cell, the information related to this cell appears in other fields. I don't want to put a button in front of each line. I would like to be able to select the item by clicking on it..... is it possible? If so, how can...
  2. celia05es

    XML Syntax validator that works with Mozilla.

    Hello, I have the following javascription function that validates a xml document that is contained within a textarea called "validxml". function validateXML() { var xmlDoc = new ActiveXObject("Microsoft.XMLDOM"); xmlDoc.async="false"; xmlDoc.loadXML(document.all("validxml").value)...
  3. celia05es

    How to kill 3 frames which are contained within another

    Hello, I have an application that is contained inside a frameset: One horizontal frame contains the logo and the application title. The application is contained within the 2nd frame. <HTML> <FRAMESET Rows="110,*" BORDER=0> <FRAME Name="head" SRC="includes/logo.html" SCROLLING=no...
  4. celia05es

    How to build, hide/show Dynamic select forms

    Hello, I need to generate 3 select lists but the 2nd depends on the 1st and the 3rd depends on the 2nd. To make it more difficult, the values are read from a database! But just one thing at a time: First I need to generate dynamically select list. Once I know how to do it, I will try to...
  5. celia05es

    Log4j log output written both in a file AND in a frame.

    Hello, I am quite new with swing and log4j so please bear with me. I have an swing application within a jar file. I have two questions: 1. How can I have the log4j log output written in a frame (separated from the main frame). I also would like to have the log4j log output written in a...
  6. celia05es

    Onload focus with id generated an error if id not found.Workaround?

    Hello, Well, I have a jsp file and the body line is: <body onload="if (document.getElementById) document.getElementById('L1').focus();"> Now, if the file, I build a table. THere are several possible cases: - Tuples can be deleted - Tuples can be modified - Tuples can be added - Tuples can only...
  7. celia05es

    JAVAX problem with special parameter

    Hello, I am using the following JAVAX stuff: .... [plist="cname="+fieldName+"&cvalue="+cvalue; [b]url="update_field.jsp?"+plist;[/b] makeRequest(url); } function makeRequest(url) { http_request = false; if (window.XMLHttpRequest) // Mozilla, Safari,... { http_request = new...
  8. celia05es

    No URL to be seen on status bar when clicking on link

    Hi, I have tried to disable the status bar, it works ok... except when the user clicks on the link.... the complete URL is then seen on the status bar!! What can I do to prevent it? Thanks ELisabeth
  9. celia05es

    How do I close a an IFRAME?

    Hi, I have the folloing jsp file: <iframe src="includes/logo.html" width="100%" height="100" scrolling="no" marginwidth="0" marginheight="0"> </iframe> <br> <iframe src="login.jsp" width="100%" height="450" marginwidth="0" marginheight="0"> </iframe> The screen is divided in two screens...
  10. celia05es

    How can I update a database from JavaScript?

    Hello, I have a jsp file. An array (generated from a database) is printed on the screen. Next to each element, there are two arrows (up and down). The user can move up/down an element from the list. By doing this, two things must happen: - The elements are moved on the screen (I can do that)...
  11. celia05es

    Validation problem with multiple submit buttons on single form

    Hello, I have a form with several fields. Each field can be modified: - individually (one submit button next to the field) - globally (a submit button at the end of the form). Before submitting the form, a validation needs to be performed.... so I added: onSubmit="return isValid()". If...
  12. celia05es

    How can I read param. value of automatically generated param names!

    Hello, I have a form and the parameter names are generated automatically... that is to say I don't really know the parameter names (Those are in fact attributes read from a list). In the form I am building, the user can: - modify only one parameter (submit goes to pp1.jsp). Each parameter...
  13. celia05es

    COmparator with strings that contains numbers, * and #

    Hello, I have been trying to solve my problem since this morning but I cannot do it!!! Please, help me. I have an array. Each element can contain digits, "*" or/and "#". I would like to sort the array using comparator... but I can't seem to find the correct algorithm. COuld you help me...
  14. celia05es

    Tabindex does not work after onBlur function with Netscape

    Hello, I am having problems using NETSCAPE with the tabindexes after using the "onBlur" Javascript function. I have been looking and looking and I can't find what is wrong!!!. Basically, I have the following: - field1 - field2 - field3 - field4 ...etc Field 2 and field3 are inicially...
  15. celia05es

    No Swap space. Please, help!

    Hello, I am working on a Solaris machine (OS version= SunOS out 5.7 Generic_106541-12 sun4u sparc SUNW,Ultra-5_10). I am using j2sdk_1_4_0_02_solaris_sparc. I was modifying a web application when I started getting the following error: "Error occurred during initialization of VM Could not...
  16. celia05es

    How to close a borwser session?

    Hello, I am using the Tomcat Formed-Authentication (Tomcat 5.0.19). Now, I know that the login page will pop-up only once per browser session. When the user exits the application, I want that the next time he enters, the login page pops-up again. To do this, I suppose I have to close the browser...
  17. celia05es

    Exception with DriverManager.getConnection to Oracle DB

    Hello, I am new to JDBC and I do hope you can help me. I am only trying to connect to an ORACLE database but I get "E/S Exception: Connection refused" I don't know if it is relevant but here is what I have: - Jakarta-Tomcat 5.0.19 - j2sdk-1_4_0_02-solaris-sparc[1].tar.gz - in my...
  18. celia05es

    How do I implement a web application under TOmcat 5

    Hello, I have installed Tomcat 5 under solaris and it works fine. I want to create under <install_dir>/<webapps> my own application: <MyAppl> with the WEB-INF (classes, web.xml, lib) directories. I don't know how to do it. I have read the TOmcat documentation but I still don't know what to do. I...
  19. celia05es

    GCC compilation problem with a very simple program!!!

    Hello, The gcc compiler has been installed on a Sun machine, the version is 3.2.1. When I try to compile the simplest possible program &quot;hello.c&quot;, I get the following errors..... please help me !!! I don't know what to do and I am really stuck!!! Thanks # pg hello.c...

Part and Inventory Search

Back
Top