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 Westi 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. kasandoro

    Randomize with VBSCRIPT

    Hello! I'm trying to create an 8-character string of completely random hex numbers using the current time and date of the computer...down to the millisecond. How is this possible with VBscript? Here's my current code, and it does work sort of, but it's not completely random, and the results...
  2. kasandoro

    Access 2003 Continuous Forms Enable/Disable Command Button?

    I have a form in Access 2003 Project that is a continuous form. I want to enable a command button on the form after data in the current record is changed/edited. The button is normally disabled. I got the code set up like this on the forms "After Update" property: Me.Command186.Enabled=True...
  3. kasandoro

    RDP -- How to prompt to accept connection?

    How can I, using RDP and GPO, set all our Windows XP Pro systems up to prompt the user to accept a connection before initiating that connection from our helpdesk?
  4. kasandoro

    VBSCRIPT Delete All Files/Folders in a subfolder (wildcard)

    I'm not sure how to go about using fso...
  5. kasandoro

    VBSCRIPT Delete All Files/Folders in a subfolder (wildcard)

    No errors or anything...the script processes just fine. I suspect it's because the folders aren't empty...
  6. kasandoro

    VBSCRIPT Delete All Files/Folders in a subfolder (wildcard)

    That does the same thing...leaves the folder structure and the files in the child folders under the root intact.
  7. kasandoro

    VBSCRIPT Delete All Files/Folders in a subfolder (wildcard)

    Any ideas at all? I had a look at some of the recursive delete commands posted here, but I couldn't get any of them to work.
  8. kasandoro

    VBSCRIPT Delete All Files/Folders in a subfolder (wildcard)

    Alright, here's what I have so far: On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_Directory WHERE FileName LIKE '%kazaa%'OR FileName LIKE '%imesh' OR FileName LIKE...
  9. kasandoro

    SQL Constraint Syntax

    @nigelrivett: Thank you! I was able to use your example and create two check constraints that served my purpose. The first one: ([Terminal] = 'Wilmington, DE' or [Wilmington_Data] is null) Makes sure that when the terminal is NOT Wilmington, DE that the [Wilmington_Data] field MUST be null...
  10. kasandoro

    SQL Constraint Syntax

    Hey everyone! I need the syntax for MS SQL Server 2000 for a constraint. Here's what I'm trying to do, in plain english: If [Terminal]='Wilmington, DE' then [Wilmington_Data] is not null Basically, if the Terminal field is equal to Wilmington, DE, then I want the user to be required to put a...
  11. kasandoro

    Citrix Login Script

    Here's the scenario. I have about 200 users who log in to a certain domain "NA". They each use a login script to map their drives. When they log into citrix, I need to bypass the script entirely. Here's what I've done so far. I created an environment variable on the server called...

Part and Inventory Search

Back
Top