View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
pk pk is offline
external usenet poster
 
Posts: 27
Default Getting list of open workbooks

The following will list all Apps/Processes currently
running. Copy all to a module and let-her-rip (note: you
may need to do some clean up due to line wrapping in this
editor):

Sub List_All_Processes_Running()

'Prepare destination
Cells.Clear
[A1].Select

'Dimension arrays
Dim aProcessName()
Dim aBelongsTo()
Dim aProcessID()

'Create object variables
Set xWMIService = GetObject("WINMGMTS:
{IMPERSONATIONLEVEL=IMPERSONATE}!\\.\ROOT\CIMV2")

'Run query against WMI
Set xProcesses = xWMIService.ExecQuery("SELECT * FROM
WIN32_PROCESS")

'Initialize loop for each item in xProcesses
For Each xProcess In xProcesses

'Determine if the owner of the process can be
identified
If xProcess.GetOwner(User, Domain) = 0 Then
'Able to identify process owner
x = x + 1
ReDim Preserve aProcessName(x)
ReDim Preserve aBelongsTo(x)
ReDim Preserve aProcessID(x)
aProcessName(x) = xProcess.Caption
aBelongsTo(x) = Domain & "\" & User
aProcessID(x) = xProcess.ProcessID
Else
'Unable to identify process owner
x = x + 1
ReDim Preserve aProcessName(x)
ReDim Preserve aBelongsTo(x)
ReDim Preserve aProcessID(x)
aProcessName(x) = xProcess.Caption
aBelongsTo(x) = "Owner Unknown " & Domain & "\" &
User
aProcessID(x) = xProcess.ProcessID
End If
Next

'Write results
For x = 1 To UBound(aProcessName)
ActiveCell.Offset(x, 0).FormulaR1C1 = aProcessName(x)
ActiveCell.Offset(x, 1).FormulaR1C1 = aBelongsTo(x)
ActiveCell.Offset(x, 2).FormulaR1C1 = aProcessID(x)
ActiveCell.Offset(x, 3).FormulaR1C1 = UCase
(aProcessName(x))
Next x

'Format results
Range("A1:D1").Value = Array("PROCESS", "BELONGS
TO", "PROCESSID", "NAME")
Rows(1).Font.Bold = True
Rows(1).HorizontalAlignment = xlCenter
ActiveWindow.SplitRow = 1
ActiveWindow.FreezePanes = True
Cells.Columns.AutoFit
For Each xCol In ActiveSheet.Columns
If xCol.ColumnWidth 50 Then xCol.ColumnWidth = 50
Next xCol

'Clear objects from memory
Set xWMIService = Nothing
Set xProcesses = Nothing

End Sub


-----Original Message-----
How do I get a list of all open Excel workbooks in WinXP?

How do I get a list of all open applications in WinXP?

I basically want to get a list of open Excel workbooks

and copy this
list into a sheet for a user to choose from. I may

eventually wish to
add a list of all open applications (Specifically, SPSS

applications).

Lance

.