I am trying to use the showdatamappingwizard function on the datasets object, but I am running into a slight problem. I run my program and I try to specify the startpage parameter, but MapPoint ignores it and just displays the default window. Also I am specifying a dataset and it is not nothing. The dataset also exists in the datasets collection that I am calling this function on. Here is my code
m_objmap is a object of mappoint.map type
Public Sub addDemographics(ds As DataSet)
m_objmap.Parent.Visible = True
m_objmap.DataSets.ShowDataMappingWizard , ds, geoDataFieldsPage
End Sub