How can i change array elements arrangement (inside script) for easy reading from this...
Local $ProcessNameList[3][2] = [["CALC.EXE", ""], ["NOTEPAD.EXE", ""], ["MSPAINT.EXE", ""]]
To something like this...? ("Please stick to the original code as much as possible.")
Local $ProcessNameList[3][2] =
[["CALC.EXE", ""], ; CALCULATOR
["NOTEPAD.EXE", ""], ; NOTEPAD.EXE
["MSPAINT.EXE", ""]] ; MSPAINT.EXE
I wanted this for easy reading especially most the comment entries. And from tim