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 SkipVought 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. nullig

    A Script to Ping a Range of IP Addresses

    You could play with the following section to parse for the times and save that info as well.... ---------------------------------------------- x = shell.run(command, 0, true) set f = fs.OpenTextFile(tempfilename, ForReading, true) fline = f.readline fline = f.readline...
  2. nullig

    Installing hotfixes with VB

    I use a method of installing updates/hotfixes via Scheduled Task. Essentially, every PC in the office has a scheduled task set up under the Administrator account to run every night (varying times) to connect to a share, run a bat file to do the updates, then reboot. Saves on the shoe leather...
  3. nullig

    Batch file scripting

    The line in your batch file that does the copy should end with... > nul This redirects the output from the console to the infinite etherspace, so the results of the command are not shown on screen.
  4. nullig

    A Script to Ping a Range of IP Addresses

    Hope somebody finds this to be useful... 'º MultiPing.vbs v2.0 º 'º º 'º Script to ping a range of IP Addresses and º 'º write results to an Excel Workbook º 'º º 'º...
  5. nullig

    Populating Controls

    I have a database of TV Shows I have on CD/Tape, which contains fields for "Show Title", "Season #", "Episode #", "Episode Name" and "Original Air Date". I have a form with a Combo Box for selecting the "Show Title" and a Tab Control with Tabs for each "Season", on which I would like a...
  6. nullig

    How do I highlight duplicate field values on a form.

    Can you give me an example of using the DCount function?
  7. nullig

    How do I highlight duplicate field values on a form.

    I guess I wasn't clear on the problem. I know how to do the formatting... I just need to figure out how to determine which fields have duplicate entries and then apply the formatting.
  8. nullig

    How do I highlight duplicate field values on a form.

    I have a form linked to a table with two fields "UserCode" and "UserName". I am trying to set the Field Backcolor to red where the UserCode data is the same. I can't find any way through conditional formatting, so I assume I'd need some code to do it. Can anyone suggest a way to do this? Thanks.
  9. nullig

    Running a script on multiple machines

    Thanks. That's exactly what I've been looking for. Noel
  10. nullig

    Running a script on multiple machines

    I am trying to run a script to collect data from a number of PCs. The script is as follows: -------------------------------------------------------- On Error Resume Next DIM Asset, PCName, Mfr, Model, Serial, User Set WSHShell = CreateObject("WScript.Shell") Set objFSO =...

Part and Inventory Search

Back
Top