Community of VE/MapPoint Users and Developers
This is a discussion on How to destroy all instances of MapPoint controls ? within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; I have programmed an application that uses the MapPoint Control 2002. When I exit the application, there's always MapPoint.exe that ...
| |||||||
| Register | Blogs | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| How to destroy all instances of MapPoint controls ? When I exit the application, there's always MapPoint.exe that goes on running in background, so the next time I start my application, this one does not work anymore... Is there a way to destroy all instances of MapPoint.exe when I quit my main application ? Thank you |
| |||
|
Hi, Check the thread 'server busy problem', it answers your question http://www.mp2kmag.com/mappoint/disc...pic.asp?t=5498
__________________ rgds, Wilfried Mestdagh www.mestdagh.biz MapPoint coding demo Order MapPoint 2009 with Routing and User Tools Spreadsheet |
| |||
|
Hi, I just try the following code in C#. It will kill all mappoint.exe instances on the manine. Code: Process[] processes = Process.GetProcessesByName("MapPoint");
foreach (Process proc in processes)
proc.Kill();
__________________ rgds, Wilfried Mestdagh www.mestdagh.biz MapPoint coding demo Order MapPoint 2009 with Routing and User Tools Spreadsheet |
![]() |
| Tags |
| controls, destroy, instances, mappoint |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Sample Excel Calling MapPoint's ActiveX Controls (VBA+VSTO) | anassar | MapPoint 2006/2009 Discussion | 0 | 03-14-2005 04:13 PM |
| Multiple instances of MapPoint Control ? | tfmiltz | MapPoint 2006/2009 Discussion | 1 | 02-05-2005 01:57 PM |
| Mappoint controls requiring Run CD | Anonymous | MapPoint 2006/2009 Discussion | 3 | 05-15-2003 12:23 PM |