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 strongm 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 dm4ever

  1. dm4ever

    End of Line pattern match

    Have you tried? (\d*\.\d*\.\d*\.\d*:\d+)$ -------------------------------------------------------------------------------- dm4ever My philosophy: K.I.S.S - Keep It Simple Stupid
  2. dm4ever

    WMI Registry problem

    This worked just fine for me Option Explicit Main() Sub Main() Const HKLM = &H80000002 Const HKCU = &H80000001 Const HKUS = &H80000003 Dim strComputer : strComputer = "xxxx" Dim objReg : Set objReg = GetObject("winmgmts:\\" & strComputer & "\root\default:StdRegProv") Dim...
  3. dm4ever

    Refreshing system tray

    The only thing I could find close to this was an AutoIT script that basically moved the mouse to the sys tray location to get rid of any orphaned icons. -------------------------------------------------------------------------------- dm4ever My philosophy: K.I.S.S - Keep It Simple Stupid
  4. dm4ever

    Stale systray icons

    When you hover over these stale icons...do they disappear? If so, I've seen a AutoIt script that moves the mouse automatically through the tray area making the icons "disappear" -------------------------------------------------------------------------------- dm4ever My philosophy: K.I.S.S -...
  5. dm4ever

    How to set Compatibility mode of an EXE file???

    You might have to do something similar to what is discussed here: http://technet.microsoft.com/en-us/library/bb456991.aspx create a compatibility db and send that out to your client machines and register it --------------------------------------------------------------------------------...
  6. dm4ever

    Type Mismatch Validate data on Input box

    Dim RegEx : Set RegEx = New RegExp RegEx.Pattern = "^\d+$" Dim strInput : strInput = InputBox("Enter a number", "Enter Number", "0") If RegEx.Test(strInput) Then WScript.Echo "you entered a number" Else WScript.Echo "you didn't enter a number" End If...
  7. dm4ever

    Type Mismatch Validate data on Input box

    How about a regular expression then... pattern if you only expect whole numbers: ^\d+$ -------------------------------------------------------------------------------- dm4ever My philosophy: K.I.S.S - Keep It Simple Stupid
  8. dm4ever

    Type Mismatch Validate data on Input box

    Use the IsNumeric function to only proceed if a number is entered. -------------------------------------------------------------------------------- dm4ever My philosophy: K.I.S.S - Keep It Simple Stupid
  9. dm4ever

    vbs file - using adodb rs to read a csv file

    That is interesting...if I do a TypeName for the value it shows as currency so I think guitarzan assumptions may be correct. Create a Schema.ini file in the same place as your CSV file and put this as the content: [bad.csv] Format=CSVDelimited Col1=FILELOCATION TEXT Col2=FILENAME TEXT...
  10. dm4ever

    Terminate duplicate process (in logged owner)

    Use the creation date property of Win32_Process to help you close the newest processes. -------------------------------------------------------------------------------- dm4ever My philosophy: K.I.S.S - Keep It Simple Stupid
  11. dm4ever

    Another Uninstall Script Question - PLEASE HELP!!!

    WMI will only show you those applications installed via an MSI so if you need something to perform an uninstall of applications installed with a different installer you will need to have you script/app look in the registry and pull out the pertinent information...
  12. dm4ever

    checking connected net printers before mapping

    The dictionary defines what printers you want to be present after your script has executed...you still need to enumerate your currently mapped printers to see what is already there...by using the dictionaries Remove method we modify the content of the dictionary to only contain those printers...
  13. dm4ever

    Delimited text file using the filenames of files within a folder

    This pattern may be better suited for paths with sub folders: "([A-Z]+:.+?\\(\w+)\s(\w+)\s(\w+)\s(\w+)\.\w+)" -------------------------------------------------------------------------------- dm4ever My philosophy: K.I.S.S - Keep It Simple Stupid
  14. dm4ever

    Delimited text file using the filenames of files within a folder

    Just a thought...an the regular expression can probably be simplified (not an expert with it) Option Explicit Main() Sub Main() Dim RegEx : Set RegEx = New RegExp RegEx.Pattern = "([A-Z]+:\\(\w+)\s(\w+)\s(\w+)\s(\w+)\.\w+)" RegEx.IgnoreCase = True Dim strTemp : strTemp = "E:\F2MA...
  15. dm4ever

    checking connected net printers before mapping

    Look at the example I posted about half way down in this thread: http://www.tek-tips.com/viewthread.cfm?qid=1383515&page=1 -------------------------------------------------------------------------------- dm4ever My philosophy: K.I.S.S - Keep It Simple Stupid

Part and Inventory Search

Back
Top