MapPoint Forums

MapForums

Community of VE/MapPoint Users and Developers




How I can Disable the summary of map when I Draw a Route

This is a discussion on How I can Disable the summary of map when I Draw a Route within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; Hi All, I m using Mappoint with C#.I want to disabel the summary of the map when I draw a ...


Go Back   MapPoint Forums > Map Forums > MapPoint 2006/2009 Discussion

Register Blogs FAQ Members List Calendar Search Today's Posts Mark Forums Read



Click here to register

Reply

 

LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-09-2005
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
How I can Disable the summary of map when I Draw a Route

Hi All,

I m using Mappoint with C#.I want to disabel the summary of the map when I draw a route.Also I want to display this summary on a button click.
How can I implement this in C#.

Thanxx
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2 (permalink)  
Old 03-09-2005
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
Hi,

To hide the summary of your route just use
the ItineraryVisible property in your MapPointControl

Code:
MapPointControl1.ItineraryVisible = False

If you create a button, the code is

Code:
MapPointControl1.ItineraryVisible = True
You have this example in the Mappoint Help file
I think it is not hard to translate in c#


Code:
Sub HideItinerary()

  Dim objApp As New MapPoint.Application
  Dim objMap As MapPoint.Map
  Dim objRoute As MapPoint.Route

  'Configure l'application
  Set objMap = objApp.ActiveMap
  Set objRoute = objMap.ActiveRoute
  objApp.Visible = True
  objApp.UserControl = True

  'Ajoute deux étapes et calcule un itinéraire
  objRoute.Waypoints.Add objMap.FindResults("Seattle, WA").Item(1)
  objRoute.Waypoints.Add objMap.FindResults("Redmond, WA").Item(1)
  objRoute.Calculate

  'Masque maintenant l'itinéraire qui était apparu automatiquement ci-dessus
  objApp.ItineraryVisible = False

  End Sub
Mohamed
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
disable, draw, map, route, summary


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
How to draw behind the map (C++) & disable Busy server ( Laurent MapPoint 2006/2009 Discussion 3 06-22-2006 01:12 PM
Delete Numerator from waypoints when i draw a route Genamo MapPoint 2006/2009 Discussion 0 02-23-2006 03:18 AM
summary to access form help please nmilne MapPoint 2006/2009 Discussion 3 01-15-2006 03:22 PM
Draw a route between two LONGS LATS Anonymous MapPoint 2006/2009 Discussion 1 02-16-2005 09:08 AM
to draw my own map rushang MapPoint 2006/2009 Discussion 0 01-23-2005 10:55 PM


All times are GMT -5. The time now is 06:29 PM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
MP2K Magazine
Visitor Map

Cheap Ski Holidays France
If you are thinking about cheap ski holidays in France then make sure you check online at Holiday Hypermarket. Our online search will check deals from the top travel agents.

Cruise Travel Agent
Book your cruise with Travel Counsellors. We are an award winning travel agent and can help plan your perfect cruise.

Holiday Italy
A Holiday in Italy can mean many different things to many different people. This diverse country has an abundance of art, wine, food and stunning beaches. Book online today.

Holidays to Mauritius
Visit the paradise island in your holidays to Mauritius. Enjoy the friendliness of the locals, the warm of the sun and the beauty of the views!

Cheap Cyprus Holidays
Finding cheap Cyprus holidays can be difficult unless you know where to look and where to book. With ulookubook.com you can conduct a simple search to find the latest holiday deals to your particular destination.

Travel Deals
Find the very best travel deals on your prime comparison site, Travel.co.uk

Holidays in Cyprus
Visit the tombs of the island kings! Visit On The Beach for information on holidays in Cyprus.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51