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: joelxez
  • Content: Threads
  • Order by date
  1. joelxez

    populate related select box.

    hi experts, I have a sample on how to populate related two select box by populating the next select box based on my selected value. but what i want to know is to put an action so that the value will pass to another page after clicking submit button, i heard this can be done in javascript. Any...
  2. joelxez

    Checked at least 1 checkbox on submit

    hi experts, i have script, it works only if there are more than 1 checkbox. But it doesnt work if there is only one checkbox present. Any one who can figure out? function validateForm() { obj = document.formname.elements("chkbox"); for (i = 0; i < obj.length; i++) {...
  3. joelxez

    get name of radio in form dynamically

    hi experts, any one who can correct this..... Element ITEMS is undefined in a Java object of type class [Ljava.lang.String; referenced as <cfoutput query="products"> <tr class="maintxt" align="center" bgcolor=""> <td><input type="radio" name="items#customertransactionID#"...
  4. joelxez

    Insert from array form field.

    hi experts, i have form with array fields. How do i set my query to insert value to table? <form method="post" action="insert.cfm"> <input type="Text" name="t" value="a"> <input type="Text" name="t" value="b"> <input type="Text" name="t" value="b"> <input type="Submit" name="submit"...
  5. joelxez

    count number of columns in a table

    hi experts, any tips on how to count number of columns in a table? j
  6. joelxez

    delete duplicate vaues in list?

    Hi experts, Any idea/code who can share with us on how to delete duplicate values in list? SAMPLE. List: john peter dave jason peter joel john OutPut: john peter dave jason joel
  7. joelxez

    ASP paging to CFM

    Anyone who could help me to convert this to cfm? <html> <head> <TITLE>Page</TITLE> < </head> <% 'Constants Const MIN_PAGESIZE = 5 'Minimum pagesize Const MAX_PAGESIZE = 20 'Maximum pagesize Const DEF_PAGESIZE = 10 'Default pagesize 'Variables Dim strSearch Dim strURL Dim objCn...
  8. joelxez

    cfloop with table?

    Hi experts, I have a code which suppose to be create an output with table. however it does'nt..pls help me <cfparam name="ParentID" default="0"> <cfif IsDefined("Attributes.ParentID")> <cfset ParentID = Attributes.ParentID > </cfif> <cfparam name="OrderBy" default="taskID"> <cfif...
  9. joelxez

    String Manipulation?

    Hi Experts, Anyone who can give some tips on how to create an output below. I have a table name table1 which has 3 columns IDNum, Child, name. If Child is EQ to IDnum then name will display just like the main topic, if Child is NOT EQ to IDNum then the name will display just like a sub...
  10. joelxez

    Microsoft WMI Scripting Library

    Dear experts, I need Microsoft WMI Scripting Library, where can i have this? Joel
  11. joelxez

    Display the Serial No. of Processor

    Dear Experts, Is there a way on how to display the serial no. of my processor in load event...all tips are acceptable. Joel,
  12. joelxez

    Adding textbox at runtime

    Hi, Any one can give some codes on how to add textbox at runtime? Let say i have one textbox in a form then when you run it in a load event it will add another textbox? any suggestions are accepted... jef,
  13. joelxez

    Adding using array Textbox

    Hi, Any one experts can give tips (sample code) on how to add data with my array textbox? let say we have lname,fname,mname,age fields in the table and with 4 textbox in a form having same name. jef,
  14. joelxez

    String Manipulation

    dear experts, Anyone can help me on how to display an output like this? aaaaa aaaa aaa aa a I have a sample code below but it does'nt. Pls help me...
  15. joelxez

    Dear experts, Anyone knows how t

    Dear experts, Anyone knows how to put two fields in listbox? I have example only one field, how about 2 fields? Ex: list1.additem (rs!lname) Joel,
  16. joelxez

    Connect to SQL Server 2000

    Dear experts, Any one can help me on how to connect to MS SQL server 2000 using vb6?
  17. joelxez

    Syntax Error?

    dear experts, I'm having an error.. [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression 'LIKE '%%''. Pls Correct? ____________________________________________________________ <html> <head> <meta http-equiv=&quot;Content-Type&quot...
  18. joelxez

    Adding user to mail server

    Dear Experts, I'm using Linux 8.0 Mail server. Is there anyone have an idea to add user using asp to mail server? pls. share me... Joel,
  19. joelxez

    Hide Column in Dbgrid?

    Dear experts, I have dbgrid in form which is to view the records in the table, i'm using Data Control. It seems that ID field is not important to view. How can i hide ID Field Column in the DBGrid? Joel,
  20. joelxez

    View the Latest Date?

    Dear Experts, I have a code below on which supposively view the names of all personnel which has latest date employed. something wrong with my code pls. correct? set rs = my_conn.Execute (&quot;Select names from tblemployee where Date_employed=DMax()&quot;) Joel,

Part and Inventory Search

Back
Top