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 bkrike 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. tonyflora63

    VBSCript to search for multiple files on multiple servers

    Hi When I run the follwoing code some incorrect file paths are returned when I loop through the file names and servers. Output: Altiris0010CG02 Ping Successful... \\Altiris0010CG02\\Express\Images\Windows7\W7110108\W7110108.002 = True...
  2. tonyflora63

    Delete columns in a csv file

    Hi does anyone know how to deleted columns in a csv file? Thanks in advance.
  3. tonyflora63

    Import CSV file into Excel SS

    HI Does anyone know how to import selective coloumns of a .csv file into an excel spread sheet? Thanks Tony
  4. tonyflora63

    Active Directory

    Hi I'm trying to get the attributes from the sub trees of an AD container. Is there a way that you could pass a CN from a txt file as a variable. Here is my code so far: DIM fso, TxtFile Set fso = CreateObject("Scripting.FileSystemObject") Set TxtFile = fso.CreateTextFile("EA-Computers.txt"...
  5. tonyflora63

    Load form at startup if condition is met

    Hi I have a form with a checkbox control. How would you load this form at starup if the checkbox is checked? Do you load it from the main form? Tony
  6. tonyflora63

    Tip of the day

    Hi Does anyone know how to create a tip of the day dialog for VB 2005. the examples that I've found so far do not work. Tony
  7. tonyflora63

    Allow logon through terminal services

    Hi Does anyone know of a way to ad a group to the local security settings\local policies\User Rights assignement\allow logon through terminal servies of a remote machine? From the command line or some sort of scripting technique? Tony
  8. tonyflora63

    Problem writing to text file

    Hi I'm trying to append a text file from input from a TextBox for some reason I get the following output: frh001wa2555655 f fr frh frh0 frh00 frh001 frh001w frh001wa frh001wa2 frh001wa26 frh001wa261 frh001wa2613 frh001wa26135 frh001wa261351 frh001wa2613519 code: Dim objStreamWriter As...
  9. tonyflora63

    Help with appending text file -VB 2005

    Hi I'm trying to append a text file with the following code: Dim tw As System.IO.TextWriter tw = System.IO.File.CreateText("D:\host.txt") tw.WriteLine(t_HostName.text) tw.Flush() tw.Close() This is what I get in the text file: frh001wa2555655 f fr frh frh0 frh00 frh001 frh001w...
  10. tonyflora63

    Populate List box

    Hi Does anyone know the code to save frequently accessed data to a list box? Autocomplete if you will. I am using VB 2005. Thanks in advance. Tony
  11. tonyflora63

    Auto complete textbox

    Hi Does anyone know the code to get frequently accessed data from a text box? I'm not sure if I'm using the proper term Auto complete? Thanks
  12. tonyflora63

    Check for updates automatically

    Hi Does anyone know of a way to have an application check for an update every time it launches? I've tried ClickOnce with no success because of it's limitations, and don't understand how the Application Updater block works? Any help would be greatly appreciated. Thanks in advance
  13. tonyflora63

    OpenFileDialog

    Hi I'm trying to pass the file name from the OpenFileDialog box to a batch file as a string. I'm able to bring up the dialog box and select the file but I'm not sure about declaring the file name and passing it as a string. Any help would be greatly appreciated. Thanks in advance. Here's what...
  14. tonyflora63

    Help with Joining a remote computer to a domain

    Hi The following script runs fine locally, but can someone help me to modify it so it can run on a machine remotely? Const JOIN_DOMAIN = 1 Const JOIN_UNSECURE = 64 Const MACHINE_PASSWORD_PASSED = 128 Const DEFERRED_SPN_SET = 256 Const INSTALL_INVOCATION =...

Part and Inventory Search

Back
Top