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 Mike Lewis 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. zwrley

    Is there a way to dynamically change the number of frames in a page?

    Hi, I'm working on a page that has three frames at startup and on one of my options, I want to load it in the top and main frames as one. Is there a way where I can change the originally 3 frames into a left and right frame? Also, is there a way to change the scrolling property of a...
  2. zwrley

    help with applet and ascii value returned as string

    hi THANKS A LOT!! I got it working now! You were right, I can't make a call to the getData() twice, that's why was not getting the value. THANKS!!
  3. zwrley

    help with applet and ascii value returned as string

    We are using applet for security reason where the applet asks the user for a password and the call to getData() encrypts the password to be submitted to another application. We thought of trying it in JSP since js couldn't recognize some of the special characters being passed by the encrypted...
  4. zwrley

    help with applet and ascii value returned as string

    Thanks for the reply. I've tried using the unescape() before but still nothing. Besides, i need the entire data retrieved from document.applets[0].getData() and do the document.write('<param name=&quot;sample&quot; value=&quot;' + document.applets[0].getData() + '&quot;>'). Can JSP make a...
  5. zwrley

    help with applet and ascii value returned as string

    I need help with calling a java applet using the <applet> tag and reading the value being returned by one of the functions in the class... here's my code: <html> <script> function doThis() { alert (document.applets[0].getData()) var tmp = document.applets[0].getData() alert (tmp) //...
  6. zwrley

    form.checkbox.length

    I was wondering if anyone has encountered this error. When I have more than 1 checkboxes displayed and I try to get its length, I get the number of checkboxes; but if only one checkbox is on the page, I get an &quot;undefined&quot; for the value of length... any help is greatly appreciated...
  7. zwrley

    how to manipulate PREVIOUS and NEXT buttons to display number of data

    I have this array which is given to me by the cgi and they wanted me to control the display in such a way that only 10 records are shown at a time and provide PREVIOUS and NEXT buttons. I need help on this one, I'm not familiar with array manipulation and how I can limit the display on screen...
  8. zwrley

    is it possible to search for a string in 2 frames using findText()

    I have 2 frames (say, mainFrame and bottomFrame) and in both frames I am dynamically creating tables with data. In one of my menu options, I am giving the user privilege to search for a string but it is searching only through one frame. Is it possible to search through the mainFrame first then...
  9. zwrley

    window.print to print the whole contents of the specified frame

    I have a page in a frameset (say, topFrame, mainFrame and bottomFrame). I am using window.print to print mainFrame but the problem is it's not printing the whole contents of the mainFrame. It only prints what is visible on the layout.
  10. zwrley

    how to load a page by calling a cgi

    i just tested it a while ago and it's working! THANKS! :)
  11. zwrley

    how to load a page by calling a cgi

    Was wondering if this is allowed: window.parent.location = &quot;/cgi-bin/transList.cgi&quot; I want to load the page from cgi when the user presses a button. I know I can specify it on the action attribute of form tag but I'm calling another cgi on the action. Is this possible or only...
  12. zwrley

    pop-up new window using document.write

    Thanks I got it :)
  13. zwrley

    pop-up new window using document.write

    I'm dynamically creating the contents of my html page, the page includes a link that would pop up a new window without the toolbar and stuffs. I've tried everything to call the pop up window but it kept showing me &quot;Object Expected&quot; error. Any help would be appreciated. Thanks <script...
  14. zwrley

    show of time changes

    I need help in displaying the time in the form layout as the time (HH24:MI:SS) changes. I have been trying to use the WHEN-TIMER-EXPIRED trigger but the change just wouldn't show on screen. Thanks.

Part and Inventory Search

Back
Top