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. chmanio

    IDCAMS and Mainframe Express

    Hi! I just installed Mainframe Express 2.5 and I'm wondering if I can execute IDCAMS to delete generated datasets? Please help. Thanks! Chris
  2. chmanio

    ESDS / Non-VSAM Sequential File

    Thanks for replying Glenn!
  3. chmanio

    ESDS / Non-VSAM Sequential File

    Hi Everybody! Can anybody please answers these 2 questions? 1. What's the difference between VSAM-ESDS and Non-VSAM sequential file? 2. What will happen to the created AIX if the base cluster was deleted? your answer will be greatly appreciated! thanks! Chris
  4. chmanio

    JSP Problem

    i have 2 pages of JSP: page1.jsp which has a combo box. after a selection is made, it will display page2.jsp which has a table created based on the the value selected on the combo. my question: can i integrate the 2 jsp in one jsp file?
  5. chmanio

    JavaScript and JSP

    Hey guys! can i use <jsp:forward page=.../> inside a JavaScript? Chris
  6. chmanio

    JavaScript and JSP

    can i use <jsp:forward page=.../> inside a JavaScript?
  7. chmanio

    javascript -&gt; html -&gt; jsp

    hey guys! can i use <jsp:forward...> inside a JavaScript?
  8. chmanio

    Combo Box Problem!

    i see.. whew! thanks for the reply guys.[bigcheeks] [peace] chris
  9. chmanio

    Combo Box Problem!

    hey! your last suggestion solved the problem! [2thumbsup] whats the difference between value and text property? Thanks!
  10. chmanio

    Combo Box Problem!

    this: <html> <head> <title>Test</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="default.css" rel="stylesheet" type="text/css"> <p> <form name="frm_term"> <select name="c_term" class="flyoutSubHeading" onChange=alert(sprex())> <option>1st...
  11. chmanio

    Combo Box Problem!

    yeah, the values are: 1st Semester, SY 2003-2004 2nd Semester, SY 2003-2004 1st Semester, SY 2004-2005 2nd Semester, SY 2004-2005 im populating the combo using JSP <pulling data from oracle>
  12. chmanio

    Combo Box Problem!

    hey guys, ive re-written my code to: <SCRIPT language=JavaScript> function sprex() { var comboValue; var sel = document.forms['frm_term'].elements['c_term']; comboValue = sel.options[sel.selectedIndex].value; return(comboValue); } </SCRIPT> still returns "". the function works i guess coz...
  13. chmanio

    Combo Box Problem!

    im using IE 6.0
  14. chmanio

    Combo Box Problem!

    thanks for the quick reply. it alerts "". chris
  15. chmanio

    Combo Box Problem!

    My form code: <form name="frm_term"> <select name="c_term" class="flyoutSubHeading" <option>1st Semester, SY 2003-2004</option> <option>2nd Semester, SY 2003-2004</option> <option>1st Semester, SY 2004-2005</option> <option>2nd Semester, SY 2004-2005</option> </select>...
  16. chmanio

    Combo Box using JSP

    im querying a database and i want to store the results in a combo box. im using the following code : <select> <option><% while (rs1.next()) { out.println(rs1.getString(1)); } %> </option> </select> my problem is the data stored in the combo box are concatenated in a single row...
  17. chmanio

    mySQL Problem

    Hey Guys! I need some help... i have installed PHP 5.0 Apache and mySQL but when i tried running a script that access a particular mySQL database i get an error: Fatal error: Call to undefined function: mysql_connect() in c:\program files\apache group\Apache\htdocs\login.php on line 42 Was...
  18. chmanio

    Login Script

    just a simple login script. check username from the table and validate if the password is correct..
  19. chmanio

    Login Script

    Hi! its my first time to use PHP, can somebody please teach me to create a simple LOGIN Script? i have mySQL as my back-end.. i have a table named users (uid, password, fullname). Pls help.. Thanks in ADvance Chris
  20. chmanio

    Grid Problem

    hi! im having problems with my grid... Im using Visual FoxPro 8.0 for creating forms and reports and mySQL as my backend. Im using 3 grids. on the first instance that data are loaded into the grids i dont encounter any problem (format is OK).. but on the second instance my grid keeps loosing...

Part and Inventory Search

Back
Top