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 Shaun E 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 woodrasj

  1. woodrasj

    vector queue limitation?

    For reporting reasons we need to make sure it gets back to the original vector.
  2. woodrasj

    vector queue limitation?

    We tried that and it seems it is per call. We routed to a different vector and queued up the skill and then returned to the original vector and it still was a no go. I think what I am going to end up doing but I have to run it by the customer is do a check skill 22 pri m if...
  3. woodrasj

    vector queue limitation?

    Can you only queue up 3 skills in a vector for a call? If that is true is there a way to get the call into a 4th queue? Thanks
  4. woodrasj

    Icons through javascript

    I am having an issue in Adobe Acrobat 8.0 that deals with adding icons and changing icons through javascript. Before I updated to the new version of Acrobat my method below worked to change out a picture but now I get a "NotAllowedError: Security settings prevent access to this property or...
  5. woodrasj

    VLAN two switches

    I was wondering if there is any special I need to do except set up the VLAN on two separate switches connected by a GBIC fiber connection to let them communicate on that VLAN. I have the first switch VLAN working already. It is setup as a GUEST vlan to let people come in and use our outside...
  6. woodrasj

    List of web pages to visit for security information

    http://csrc.nist.gov/secpubs/rainbow/ This has all the rainbow series books in text files. John Woodraska
  7. woodrasj

    Active Directory Users

    I think i documented below enough of the code that you should be able to figure out what is going on. This may or may not help you. John 'Set constants for files Const ForReading = 1 'Set up for error handling later On Error Resume Next 'Set up the input file and make sure the argument for...
  8. woodrasj

    Showing Ownership

    I ended up writing two scripts for this project. All I wanted to do was find where some files were located for a nonexistent user that showed up in the quota manager only as a SID. First script compiles a list of folders for the drive. set objFSO =...
  9. woodrasj

    Showing Ownership

    I found some code and made it this far but could somebody help me with checking all the subfolders too. set objShell = CreateObject ("Shell.Application") set objFolder = objShell.Namespace ("c:\drivers") set objFSO = CreateObject("scripting.fileSystemObject") dim...
  10. woodrasj

    if then statements vs Case statements Help

    Is there any reason you couldn't do this with a for statement for x = 1 to 30 strDataScript = strDataScript & "Document.All(""REGLabel1_" & iPageCount & "_" & iRowCount & "_20"").innerhtml = """ & Week(x,1) &...
  11. woodrasj

    Showing Ownership

    I really don't care who owns them for sure because by looking at most of them I can probably figure it out but the problem is is finding them. I am pretty sure it is probably someone who has had their account deleted but without knowing where the files are I can't tell what can be kept or not...
  12. woodrasj

    Showing Ownership

    I have searched and searched but can't find a way to tell who is the owner of a file. Here is the situation I have. I am looking through my disk quota's on one of my drives and I have a couple entries that show no account information available for the name and the logon gives a SID. What I...
  13. woodrasj

    Help with if then statement Please

    You are going to have to add cDate function in and then put the And in to make it work tempDate = cdate(rs(&quot;dtsDate)) If cdate(Week1Start) <= tempDate and _ cdate(Week1End) >= tempDate Then This way it is sure that the dates are all in the same format.
  14. woodrasj

    Help with if then statement Please

    I would try and set up so it shows explicitly that you want it less than the week1end ie If Week1Start <= rs(&quot;dtsDate&quot;) And Week1End >= _ rs(&quot;dtsDate&quot;) Then This may or may not do it but it would be worth a try.
  15. woodrasj

    Sort problem in VBscript/ASP

    I was asked to make a Phone search/sort webpage for my company using the information in active directory. Not a problem. I am having a problem though with my code where I try to sort on more than one part of the display that it returns no results. If I only use one part to sort on it works...

Part and Inventory Search

Back
Top