Re: What's running on my machine

2000-11-19 Thread David Shadovitz

This isn't exactly what you asked for, but it is interesting.
The following MS Word VBA routine will list all tasks running on the
machine.  Open Word, open its VBA Editor (Alt-F11), insert a module,
paste this code into the module, and run it.

Sub ListTasks()
Dim oTask As Task
Dim strTaskList As String 
For Each oTask In Tasks
strTaskList = strTaskList  oTask.Name  vbCr
Next oTask
MsgBox strTaskList
End Sub

Thanks to Jim O'Hara" of Mailbase's Excel-VB List for it.
Note: if the resulting MsgBox window extends below your monitor so that
you cannot see its control buttons, know that you can close it simply by
hitting Enter.

-David

On Sat, 18 Nov 2000 18:44:27 -0500 "Brian L. Wolfsohn" [EMAIL PROTECTED]
writes:
 IS it possible to have a .cfm template return the names of all 
 applications 
 created with cfapplication currently running on a given machine ??

GET INTERNET ACCESS FROM JUNO!
Juno offers FREE or PREMIUM Internet access for less!
Join Juno today!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: What's running on my machine

2000-11-18 Thread Paul Mone

You could make a Server scoped List that held the names.  You'd have to add
code to each application.cfm that held the cfapplication tag to add the
application's name to the list if it didn't already exist in the list.

-Original Message-
From: Brian L. Wolfsohn [mailto:[EMAIL PROTECTED]]
Sent: Saturday, November 18, 2000 3:44 PM
To: CF-Talk
Subject: What's running on my machine


IS it possible to have a .cfm template return the names of all applications
created with cfapplication currently running on a given machine ??





~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists