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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bjblackmore

  1. bjblackmore

    VBScript to Update Attributes for All Users in AD OU

    OK, think I fixed it, had to add 'Set objUser = GetObject ("LDAP://" &objRecordSet.Fields("Name").Value)' Thanks Ben
  2. bjblackmore

    VBScript to Update Attributes for All Users in AD OU

    Hi, I need a vbscript that will update a single attribute for all users in an OU & subOU. I've found a couple of vbscripts online, one which updates user attributes based on an array of users listed (having to manually create the array), and another which searches & lists all users in an OU &...
  3. bjblackmore

    Modify Javascript for PHP array

    Hi, Does anyone know how to modify this javascript so that it will recognise checkboxs called checkbox[0], checkbox[1], checkbox[2]...etc so my php script will work. <SCRIPT LANGUAGE=&quot;JavaScript&quot;> var checkflag = &quot;false&quot;; function check(field) { if (checkflag ==...
  4. bjblackmore

    PHP + Javascript + Checkboxs

    sleipnir214, your post said use var checkname = &quot;barney[]&quot;; with <input type=checkbox name=&quot;barney[]&quot; value=&quot;a&quot;>, <input type=checkbox name=&quot;barney[]&quot; value=&quot;b&quot;>..etc would it still work if checkbox name was barney[0], barney[1], etc?
  5. bjblackmore

    PHP + Javascript + Checkboxs

    Hi I have the following javascript... <SCRIPT LANGUAGE=&quot;JavaScript&quot;> var checkflag = &quot;false&quot;; function check(field) { if (checkflag == &quot;false&quot;) { for (i = 0; i < field.length; i++) { field[i].checked = true;} checkflag = &quot;true&quot;; } else { for (i = 0; i <...

Part and Inventory Search

Back
Top