I need it in a numeric format so I can do the following:
If $PCount = $PCount + 1 Then ; Do stuff here End If
Edited by XxXGoD, 22 February 2012 - 06:57 PM.
Posted 22 February 2012 - 06:57 PM
If $PCount = $PCount + 1 Then ; Do stuff here End If
Edited by XxXGoD, 22 February 2012 - 06:57 PM.
Posted 22 February 2012 - 07:07 PM
The array returned is two-dimensional and is made up as follows:
$array[0][0] = Number of processes
$array[1][0] = 1st Process name
$array[1][1] = 1st Process ID (PID)
How to ask questions the smart way!
Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.
Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.
_FileGetProperty - Retrieve the properties of a file SciTE Toolbar - A toolbar demo for use with the SciTE editorGUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.
GUIToolTip UDF Demo - Demo script to show how to use the GUIToolTip UDF to create and use customized tooltips.
Posted 22 February 2012 - 07:16 PM
$list = ProcessList() $x = 0 For $i = 1 To $list[0][0] If $list[$i][0] = "notepad.exe" Then $x = $x + 1 EndIf Next MsgBox(0, "", $x)
Posted 22 February 2012 - 07:43 PM
$PCount = ProcessList("notepad.exe") MsgBox(64, "Count", "Number of notepad processes found = " & $PCount[0][0])
How to ask questions the smart way!
Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.
Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.
_FileGetProperty - Retrieve the properties of a file SciTE Toolbar - A toolbar demo for use with the SciTE editorGUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.
GUIToolTip UDF Demo - Demo script to show how to use the GUIToolTip UDF to create and use customized tooltips.
Posted 22 February 2012 - 07:46 PM
If $PCount = $PCount + 1 Then ; Do stuff here End If
Posted 23 February 2012 - 01:13 PM
Perfect, thank you I had to change how it works a little but it works flawlessly.You should be able to do something like this:
$list = ProcessList() $x = 0 For $i = 1 To $list[0][0] If $list[$i][0] = "notepad.exe" Then $x = $x + 1 EndIf Next MsgBox(0, "", $x)
I was unable to do what I wanted using that however the other guys works perfect.Or you could do this:
$PCount = ProcessList("notepad.exe") MsgBox(64, "Count", "Number of notepad processes found = " & $PCount[0][0])
Edited by XxXGoD, 23 February 2012 - 01:14 PM.
0 members, 0 guests, 0 anonymous users