dlantz,
If you are using the C# samples then there is a small change to be made. You will need to create the BeforeLayersDraw event and paste some code into it.
To do this:
1. Open RenderUSAWinforms and “View Designer” on “Sample.cs”.
2. Click on the Map Control and then click on the “View Events” lightning bolt.
3. Double-click on the empty box to the right of the BeforeLayersDraw Event. This will create the event that we need to add code to.
4. Add this code to your BeforeLayersDraw Event:
if (mRenderUSA != null)
mRenderUSA.RefreshUSALayers(Map1.CurrentExtent);
5. Run the project.
This will load all the streets that were missing.
Note: This issue is not present in the next RenderUSA.
ThinkGeo Support