Another thing you can do is create the control array of PictureBoxes (called picTabs here) and use this code to show the correct PictureBox at run time:
-------------------------------
Private Sub TabStrip1_Click()
Dim Pic As PictureBox
For Each Pic In picTabs
Pic.Visible = (Pic.index = TabStrip1.SelectedItem.index - 1)
Next
End Sub
-------------------------------
At design time you can "cascade" the picboxes so that you can easily select any one of them, and use the Ctrl+J key combination to bring it to the front which kind of simulates selecting different tabs at design time. Or instead of cascading them, you can line them up overlapping and select the one you need from the dropdown just above the properties window, then Ctrl+J again. It's not as simple as using the add-in, but it's just another tecnique to choose from if you want it. This is also easier to work with than the VB AppWizard's Option Dialog example which positions "invisible" picboxes at -20000, where you can't modify them without changing this first, then changing it back when ur done.
Happy Holidays!
~Mike
Any man willing to sacrifice liberty for security deserves neither liberty nor security.
-Ben Franklin