guy,
Welcome you to ThinkGeo MapSuite forum!
Following is the code snippet from our VB HowDoI samples\Samples\Extending MapSuite\ LoadTabFileFeatureLayer sample.
Map1.MapUnit = GeographyUnit.DecimalDegree
Map1.CurrentExtent = New RectangleShape(-96.51477, 30.759543, -94.355788, 28.910652)
Map1.MapBackground.BackgroundBrush = New GeoSolidBrush(GeoColor.GeographicColors.ShallowOcean)
Dim worldLayer As New TabFileFeatureLayer(MapPath("~/SampleData/world/HoustonMuniBdySamp_Boundary.TAB"), "FID", "OGRSchema", "HoustonMuniBdySamp_Boundary", "GEOMETRY")
worldLayer.ZoomLevelSet.ZoomLevel01.DefaultAreaStyle = AreaStyles.Country1
worldLayer.ZoomLevelSet.ZoomLevel01.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20
Map1.StaticOverlay.Layers.Add("WorldLayer", worldLayer)
Map1.StaticOverlay.TileType = TileType.SingleTile
You can find more samples if you want.
Any more questions just let me know.
Thanks.
Yale