(Not Signed In)

Sign In

Mobile Development: Useful mobile tutorial: A Simple Mobile Navigation Application

Bottom of Page

1 to 3 of 3

  1.  
    •  
      CommentAuthorSeanS
    • CommentTimeJul 7th 2009 edited
     
    Check out the tutorial A Simple Mobile Navigation Application Using the NavigationManager Class for great step-by-step instructions on getting a mobile navigation app up and running.

    If you have any questions about it, post them here.
  1.  
    Hello,

    I am trying to do this tutorial but I am having some problems when I get to the step where you define the:
    RendererList renderList = new RendererList();

    The Class RendererList is not recognized although all the "using" statements are well "copied+pasted" and I verified this by hand a lot of times.

    I am using the Visual Studio 2008 (9.0) and already tryed with a different set of Framework (2.0, 3.5) and also with different Smart Devices (5.0 and 6.0 Professional) .

    If it's possible for someone to give me a little highlights on what I am doing wrong I would be appreciated.

    Best Regards,
    Joel Oliveira
    •  
      CommentAuthorSeanS
    • CommentTimeOct 7th 2009
     
    Have you added the reference to geobase.mobile.net?

    What does your Form1.cs code look like? This is what I have that does find RenderList and compile:

    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using Telogis.GeoBase;
    using Telogis.GeoBase.Repositories;
    using Telogis.GeoBase.Navigation;
    using Telogis.GeoBase.Routing;
    using System.IO;

    namespace NavTutorial
    {
    public partial class Form1 : Form
    {
    RendererList renderList = new RendererList();

    public Form1()
    {
    InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {

    }
    }
    }

1 to 3 of 3

  1.