.NET
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
AutoCAD sessions
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
94 Views, 4 Replies
07-25-2005 06:11 AM
How can I obtain all runnning intances of AutoCAD running on a machine? I'd like a pointer to each 1 in my application.
Re: AutoCAD sessions
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
07-25-2005 10:51 AM in reply to:
thenrich
Dim p As Process
For Each p In Process.GetProcessesByName("acad")
Console.WriteLine(p.ToString)
Next
For Each p In Process.GetProcessesByName("acad")
Console.WriteLine(p.ToString)
Next
Re: AutoCAD sessions
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
07-25-2005 10:53 AM in reply to:
thenrich
How does that give me a pointer to the application so I can execute methods and properties on it?
*Tony Tanzillo
Re: AutoCAD sessions
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
07-25-2005 03:59 PM in reply to:
thenrich
> "How can I obtain all running instances of AutoCAD"...
What exactly do you mean by 'running instances' ?
The AcadApplication object, or something else?
--
http://www.caddzone.com
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
wrote in message news:4909919@discussion.autodesk.com...
How can I obtain all runnning intances of AutoCAD running on a machine? I'd like a pointer to each 1 in my application.
What exactly do you mean by 'running instances' ?
The AcadApplication object, or something else?
--
http://www.caddzone.com
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
How can I obtain all runnning intances of AutoCAD running on a machine? I'd like a pointer to each 1 in my application.
Re: AutoCAD sessions
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
07-26-2005 05:21 AM in reply to:
thenrich
yes AcadApplication - all of them.....
