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 TouchToneTommy 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: *

  • Users: chuckster1
  • Content: Threads
  • Order by date
  1. chuckster1

    select SELECT FROM stored procedure

    Hi There, I'm executing a stored procedure sp_depends 'param' and it sometimes returns 1 sometimes 2 result sets. Is there a way to specify which result set it returns? Chuckster.
  2. chuckster1

    Access an HTML object by name

    I want to pass a HTML object name to a function to perform the following task. It won't work because I don't know how to set the reference to the object. Javascript has the getElement command. Does vbscript has something similar? Function...
  3. chuckster1

    ASP.NET and WMI

    Hi There, I'm trying to create a web interface for some of my WMI scripts. If I pass the name of the computer that hosts the web page to the sub the wmi script works. If I pass the name of another computer I get the error shown below. I suspect that it is a permissions thing but I have tried...
  4. chuckster1

    Multidimensional Array

    I thought I 'got' multidimenstional arrays until I tried to use it. I want to: myArray(0) to be "c:\test" myArray(0,0) = "file1.xxx" myArray(0,1) = "file2.xxx" myArray(0,2) = "file3.xxx" myArray(1) to be "c:\test2" myArray(1,0) =...
  5. chuckster1

    SQL Server don't want to date me.

    I'm sure my simple SQL statements worked before but now I'm getting a type convertion error. The ERROR: "The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value" Code: 80040e07 I tried Cdate(now()) And myDate = now() Isdate(myDate)...
  6. chuckster1

    Comma's and List Boxes

    I'm adding information into a list box but some fields have commas in them. The list box then decides to break the line at the comma and puts it on the next line. Can I stop it from doing this. e.g. listbox.additem "chucky\, chuckster" becomes 2 entries in a listbox chucky...
  7. chuckster1

    ADSI Connection

    Hi There, I'm trying to create a connection to Active Dir. with ADO. The microsoft site tells me to use this syntax but I get an error with the Server.CreateObject. It says that object server is required but without it it does work either. Any ideas? Set cnn =...
  8. chuckster1

    Log Off

    I want to run a script when a users Logs Off from Windows. Does anyone know how I could link a script to this event? Thanks.
  9. chuckster1

    Search all Files in all Folders

    Hi there, I want to write a script that searches through the entire drive for certain files and performs an action. I use the fso.GetFolder method then .subfolders and .files but don't think these methods are suitable for going through every folder on the drive. Any ideas? Chuck
  10. chuckster1

    Download Problem

    I need to get my boss to download a CSV file daily but he has selected Open from current location and then unticked the tick box "always ask for this type of file?" so therefore any CSV we try to download will automatically opens up in the web page. I would normally just right click...

Part and Inventory Search

Back
Top