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 strongm 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. peteswrx

    How to disable textbox

    Excellent!! thank you for all of your help!!
  2. peteswrx

    How to disable textbox

    Thanks I figured it out. This seems to work pretty good... <script language = &quot;vbscript&quot;> sub DisableTextbox() if document.Vendor.cboVendor.value <> &quot;&quot; then document.Vendor.txtVendorName.value=&quot;&quot; document.Vendor.txtVendorName.disabled=true else...
  3. peteswrx

    How to disable textbox

    I have a combobox that looks like this: <select name = &quot;cboList&quot;> <option>Not in list</option> <option>Vendor1</option> <option>Vendor2</option> <option>Vendor3</option </select> I also have another textbox that looks like this: <INPUT type=&quot;text&quot...
  4. peteswrx

    directory

    i guess i'm asking for how to write a batch file for this huh?
  5. peteswrx

    directory

    Is it possible to have a directory (named A, for example) that I can save documents to and once they are saved to that folder, an automatic copy will be sent to 2 different directories (directories B and C)?
  6. peteswrx

    loop through recordset

    Here's my modified version: If I was to uncomment the response.write, I would see every DOB for that record, so that is working, but the line &quot;if (DOB = rsbabyinfo.....) is not working>>> if (chk= &quot;&quot;) then rsbabyinfo.MoveFirst do until rsbabyinfo.EOF if (DOB =...
  7. peteswrx

    loop through recordset

    Nope. The loop through recordset code (movefirst/movenext) is not working. I checked to see if I have an active record before and after the code and I do... What could be the problem??
  8. peteswrx

    loop through recordset

    Thank you very much for all of your help. i'll try removing the quotes once i'm back at work monday. thanks!!
  9. peteswrx

    loop through recordset

    Thank you very much for all of your help. i'll try removing the quotes once i'm back at work monday. thanks!!
  10. peteswrx

    loop through recordset

    Thank you very much for all of your help. i'll try removing the quotes once i'm back at work monday. thanks!!
  11. peteswrx

    loop through recordset

    I couldn't get this to work. I think it hits response.end, but the messagebox never pops up. and yes, i'm connecting to the DB before this code.
  12. peteswrx

    loop through recordset

    I have a DOB text box (&quot;txtDOB&quot;) on my form. I want to be able to loop through a recordset so that where &quot;txtDOB&quot; = rsinfo(&quot;DOB_FIELD&quot;), the user will see a messagebox and then response.end. Here's my code sofar: if (request.form(&quot;chkTwin&quot;) =...

Part and Inventory Search

Back
Top