Function GETFROMSNMPWALK(vOID, vStringFromSNMPWalk) 'This function will take a walk from the walk function and find the value 'returned from the walk corosponding to vOID. If the OID can't be found 'the function will return "FALSE". 'This script is provided under the Creative Commons liscense located 'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not 'be used for comercial purposes with out the expressed written consent 'of NateRice.com aValues = Split(vStringFromSNMPWalk, "|") For Each vValue In aValues aCompareString = Split(vValue, " = ") If Trim(aCompareString(0)) = Trim(vOID) Then GETFROMSNMPWALK = aCompareString(1) Exit For End If Next If IsEmpty(GETFROMSNMPWALK) Then GETFROMSNMPWALK = False End Function